Below is my own answer to the question. I will appreciate any constructive comment.
add_shortcode( 'group_members', 'group_members_shortcode_handler' );
function group_members_shortcode_handler ( $atts, $content = null ) {
global $wpdb;
$querystr = "SELECT * FROM wp_groups_user_group";
$users = $wpdb->get_results($querystr, OBJECT);
$output="";
foreach ($users as $user) {
if($user->group_id == $atts['group_id']){
$firstName = esc_html(get_user_meta($user->user_id, 'first_name', true));
$lastName = esc_html(get_user_meta($user->user_id, 'last_name', true));
$output .= '<li>' . $firstName . ' ' . $lastName . ' - ' . esc_html(get_user_meta($user->user_id, 'teaching_position', true)) . '</li>' . PHP_EOL;
}
}
return $output;
}
Related Posts:
- Register visits of my pages in wordpresss
- Create a shortcode that creates a form for users to edit their information
- How to list users by custom field?
- How to insert current user ID/entry ID into a shortcode?
- How to display total user count by specific role in WordPress as statistics?
- Check if Page=current user page via shortcode
- current_shortcode() – detect currently used shortcode
- Get shortcode name from within it’s callback function? [duplicate]
- Tinymce – How to hook before or after live shortcodes rendering?
- How to customize a shortcode using the customizer
- Shortcode not working inside html input
- do_shortcode based on _thumbnail_id
- Why does WP not like my container?
- Nested Shortcode Inside [caption] Doesn’t Process
- How can I get the [video] shortcode to allow query string parameters?
- How to handle a shortcode function directly?
- Turn a snippet of HTML and PHP into a shortcode
- How can I get the current user email instead of user ID?
- How to put an “include” inside a “do_shortcode”?
- Changing playlist shortcode thumbnail sizes?
- What is the $atts parameter in shortcode_atts()?
- Audio and video shortcodes not working properly
- WordPress 4.7 Galery shortcode not working
- How to add and submit input fields using a shortcode?
- How can i remove the paragraph from shortcodes content?
- Easy way to show excerpts of specific posts on a page
- Shortcode content not displaying on Home page
- shortcode causing the_content() to return blank?
- WordPress shortcode display as plain text
- Replace / Remove Shortcode after 1st run / post
- What is wrong with my rewrite rule for a page URL with query parameters and short codes?
- create shortcode to list users with specific meta key value
- Use shortcodes in custom metabox using wp_editor?
- Can I wrap an unordered list inside a shortcode?
- How do I write this shortcode? [closed]
- Where to filter Shortcode string prior to execution
- WordPress shortcode for a section Template
- Media added with shortcodes not “linked” with post
- Specifying a single file from multi-file GIST (wordpress.com) [closed]
- Is it important to sanitize inputs in a shortcode that will be used in site that only I will post to?
- Shortcode default attributes over-riding non-default attributes
- Shortcode callback for add_action(‘wp_footer’)
- Get page content and execute shortcodes on a page
- Using shortcode to display array in array
- Add the last viewed post title to a contactform with shortcode [closed]
- Make a Shortcode load after Post/Page Content?
- Adding JS in header when using wp_enqueue_script in a shortcode
- Adding a template part as part of a shortcode
- Just display content between shortcode brackets
- How can i share codes on my blog?
- How to explode single string IF it’s used in shortcode
- How to dynamically add wordpress shortcodes
- Check if CTP category taxonomy is set in shortcode
- Getting Page Content Using Shortcode
- shortcode with conditional results if logged in
- Can I pass parameters to the add_shortcode() function?
- Turning variable into a value set in shortcode
- how can I change my font color for Shortcode [closed]
- tax query shortcode
- Create a function to display HTML/data based on site admins role?
- AJAX and do_shortcode
- How can I extract a word from page/post URL using shortcodes
- Custom user registration shortcode – redirect header issue
- Shortcode question…. javascript
- How to add a shortcode that creates an adjacent column of text in the content editor?
- Adding shortcode of “Random Content” Plugin in the post after the title
- Template not loading with get_template_part or locate_template
- Check if parent page has child page of certain slug
- Variable inside shortcode or shortcode inside shortcode
- From a shortcode I want to pass a value to display a different page
- Remove figcation from excerpt
- Shortcode select another dbbase
- Hide password protected dynamic content in templates via shortcode
- Shortcode callback not called
- Send Mail with link to current_user
- Geoip shortcodes in comments
- Shortcode not interpreted if parameter set
- Can we add a single caption to the gallery shortcode?
- Create shortcode to display specific post in relationship current date
- Add custom shortcodes to the Welcome Mail
- How to handle multiple nested shortcodes with different tags?
- Using shortcode to stop post content from displaying
- Shortcode Attribute contains clone of all shortcode attributes
- How to echo an array returned by a function
- Creating custom shortcode
- What is short code for following?
- Created a shortcode, using it twice (but differently) on a page but its just outputting the same one twice
- Access Shortcode in ajax code?
- Automate post creation in wordpress
- WP_Editor Shortcode Issue
- Shortcode not working in custom post types
- Shortcode or placeholder for theme options page?
- How to print [embed] code in wordpress [duplicate]
- Shortcode append to the the_content()
- IFrame Shortcode plugin – issue
- How to call shortcode on button click
- How can you alter the name of attributes in a shortcode?
- wordpress how to sort posts on custom data with plug-in “Search & Filter”
- How to reuse php templates as shortcodes?
- Shortcode attributes from meta query variables