Feature Row

The feature row displays a group of visual items in a responsive grid or flex row. The appearance of each item is controlled by the type attribute on the wrapper.

Feature Row Wrapper Shortcode

Use [mu_feature_row] to wrap a group of [mu_feature_item] shortcodes.

mu_feature_row Parameters

  • RequiredType (type): Controls how the items are displayed. Options:
    • image — Photo teaser cards with a gradient overlay and title at the bottom. Images animate on hover. Best for linking to sections or colleges.
    • card — White cards with an optional image, title, body text, and a button.
    • gray — Legacy alias for image. Existing uses will continue to work.
  • Items Per Row (per_row): Controls how many items appear per row. Accepts 2, 3 (default), or 4.
  • Preheading (preheading): Optional. Small uppercase text displayed above the heading.
  • Heading (heading): Optional. A heading displayed above the feature row. Also accepts header for backward compatibility.
  • Subheading (subheading): Optional. Descriptive text displayed below the heading. Also accepts subtitle for backward compatibility.

Feature Item Shortcode

mu_feature_item Parameters

  • RequiredTitle (title): The title displayed on the item.
  • RequiredLink (link): The URL the item links to.
  • Background Image (bg_image): URL of the image. Required for image type. Optional for card type.
  • Link Text (link_text): Text for the button in card type. Defaults to Learn More.
  • Content: Body text for card type, placed between the opening and closing tags.

Feature Row Shortcode Examples

Photo Teasers

Shortcode
[mu_feature_row type="image"]
[mu_feature_item title="College of Arts and Media" link="http://www.marshall.edu/cam/" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-1.jpg"]
[mu_feature_item title="College of Business" link="https://www.marshall.edu/cob/" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-2.jpg"]
[mu_feature_item title="College of Education" link="http://www.marshall.edu/coepd/" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-3.jpg"]
[/mu_feature_row]

Photo Teasers — Four Per Row

Shortcode
[mu_feature_row type="image" per_row="4"]
[mu_feature_item title="About Us" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-4.jpg"]
[mu_feature_item title="Our Faculty" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-2.jpg"]
[mu_feature_item title="Our Programs" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-3.jpg"]
[mu_feature_item title="Contact Us" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-1.jpg"]
[/mu_feature_row]

Cards with Heading

Get Involved

Our Community

Explore what Marshall has to offer.
Students
Students
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Degrees & Programs
Degrees & Programs
Praesent efficitur leo vel nisl luctus, ut iaculis tortor consectetur.
Research
Research
Integer finibus justo ut luctus rhoncus, tortor lectus ullamcorper neque.
Shortcode
[mu_feature_row type="card" preheading="Get Involved" heading="Our Community" subheading="Explore what Marshall has to offer."]
[mu_feature_item title="Students" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-4.jpg" link_text="Learn More"]Lorem ipsum dolor sit amet, consectetur adipiscing elit.[/mu_feature_item]
[mu_feature_item title="Degrees & Programs" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-2.jpg" link_text="Explore Programs"]Praesent efficitur leo vel nisl luctus, ut iaculis tortor consectetur.[/mu_feature_item]
[mu_feature_item title="Research" link="#" bg_image="https://www.marshall.edu/marsha/files/2026/03/docs-3.jpg" link_text="View Research"]Integer finibus justo ut luctus rhoncus, tortor lectus ullamcorper neque.[/mu_feature_item]
[/mu_feature_row]