Note
The profiles shortcode is available on my.cgu.edu sites, but not scholar.cgu.edu sites.

Examples of profiles can be seen at CGU Administration

Shortcode
[profiles ids="" includes="" span="" link_to_profile=""]

Parameters

ids
(required) A comma separated list of post IDs of the people or students you’d like to display.

includes
(optional) A comma separated list of items to display for each profile. Options include: image, email, phone, website, cv, degrees, programs, expertise, and affiliations. If no information exists for a particular profile, it will not display. Name and Title will always display. The order in which you specify these items does not matter. The order in which they’re listed here is the order in which they’ll appear (note: image will display above name and title).

span
(optional) The width, in number of columns (1-12), or each profile. Use this to display a profile or group of profiles in columns.

link_to_profile
(optional) By default, a “View Profile” link is provided below each profile. Set to “false” to hide this link.

Usage Examples


Output a single profile next to a block of text:
Place the shortcode just above the block of text it should sit next to.

[profiles ids="4401" span="6"]

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.


Output profiles in a grid of 3 profiles per row:
Note: for the span attribute we use the number 4 because 12/3 = 4. Since we have 12 columns in our grid, each profile should occupy 4 columns in order to display 3 profiles in each row.

[profiles ids="4401, 4402, 4403, 4404, 4405" span="4"]


Output profiles with specific information in a grid of 3 profiles per row:

[profiles ids="4401, 4402, 4403, 4404, 4405" span="4" includes="image, email, phone, website"]


Output profiles and hide the “View Profile” link:

[profiles ids="4401, 4402, 4403" includes="email, website" link_to_profile="false"]