Link Lists

The link list displays a group of linked items, each with a title and optional short description. Items flow into a two-column split by default, or can be displayed as a three-column grid.

Links List Wrapper Shortcode

Use [mu_links_list] to wrap a group of [mu_links_list_item] shortcodes. The wrapper handles layout automatically — no rows or columns needed.

mu_links_list Parameters

  • Style (style): Controls the layout. Use grid for a three-column grid. Omit for the default two-column split.
  • Heading (heading): Optional. A heading displayed above the list.
  • Preheading (preheading): Optional. Small uppercase text displayed above the heading.
  • Subheading (subheading): Optional. Descriptive text displayed below the heading.

Links List Item Shortcode

mu_links_list_item Parameters

  • RequiredTitle (title): The link title displayed prominently on the item.
  • RequiredURL (url): The full URL the item links to.
  • Content: Optional. A short description of the link, placed between the opening and closing tags.

Links List Shortcode Examples

Default Two-Column Example

Shortcode
[mu_links_list]
[mu_links_list_item title="Find My Enrollment Counselor" url="https://www.marshall.edu/recruitment/"]Find out who your Enrollment Counselor is at Marshall.[/mu_links_list_item]
[mu_links_list_item title="Tour Our Campus" url="https://www.marshall.edu/recruitment/tour-our-campus/"]View upcoming events on campus or schedule a tour.[/mu_links_list_item]
[mu_links_list_item title="Experience Marshall" url="https://www.marshall.edu/experience/"]Experience all that Marshall has to offer.[/mu_links_list_item]
[mu_links_list_item title="Apply Now" url="https://www.marshall.edu/apply/"]Start your application to Marshall University today.[/mu_links_list_item]
[/mu_links_list]

Grid Layout with Heading Example

Shortcode
[mu_links_list style="grid" heading="Explore Marshall" preheading="Resources" subheading="Everything you need to get started at Marshall University."]
[mu_links_list_item title="Find My Enrollment Counselor" url="https://www.marshall.edu/recruitment/"]Find out who your Enrollment Counselor is at Marshall.[/mu_links_list_item]
[mu_links_list_item title="Tour Our Campus" url="https://www.marshall.edu/recruitment/tour-our-campus/"]View upcoming events on campus or schedule a tour.[/mu_links_list_item]
[mu_links_list_item title="Experience Marshall" url="https://www.marshall.edu/experience/"]Experience all that Marshall has to offer.[/mu_links_list_item]
[mu_links_list_item title="Apply Now" url="https://www.marshall.edu/apply/"]Start your application to Marshall University today.[/mu_links_list_item]
[mu_links_list_item title="Financial Aid" url="https://www.marshall.edu/financialaid/"]Learn about scholarships, grants, and financial aid options.[/mu_links_list_item]
[mu_links_list_item title="Campus Life" url="https://www.marshall.edu/studentlife/"]Discover clubs, housing, dining, and more.[/mu_links_list_item]
[/mu_links_list]