Forums
Forums / Fixing WordPress / Author Url
(@joskjos)
13 years, 2 months ago
How to create a All author’s listing page.
url should be,
http://www.mydomain.com/author/
(@vahidd)
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]
[authors]
The topic ‘Author Url’ is closed to new replies.