Viewing 1 replies (of 1 total)
  • First, add this to your functions.php:

    function authors_function( $atts ) {
    	return wp_list_authors('exclude_admin=0&optioncount=1&show_fullname=1&hide_empty=1');
    }
    add_shortcode( 'authors', 'authors_function' );

    Then use this shortcode into you editor:
    [authors]

Viewing 1 replies (of 1 total)
  • The topic ‘Author Url’ is closed to new replies.