Forums
Home / Fixing WordPress / Author Url
(@joskjos)
12 years, 2 months ago
How to create a All author’s listing page.
url should be,
https://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]