Replies: 0
I’ve found a problem using wp_biographia when there is a space inside the ‘author_login’ parameter.
Where the authors-page plugin code says:
$html .= do_shortcode( ‘[wp_biographia user=’.urldecode($wp_query->query_vars[‘author_login’]).’]’ );
It should be:
$html .= do_shortcode( ‘[wp_biographia user=\”.urldecode($wp_query->query_vars[‘author_login’]).’\’]’ );
That’s all. Problem fixed 🙂