Show WordPress users in grid with image and name
The first thing you have to do is create the shortcode you need: function wpusers_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( ‘group’ => ‘logistics’, ), $atts ); // code here } add_shortcode( ‘wpusers’, ‘wpusers_shortcode’ ); Now you have a self-closing shortcode. Now it’s time to consult the database to get all registered … Read more