Fix for a problem with space in author_login using wp_biographia
-
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 ??
- The topic ‘Fix for a problem with space in author_login using wp_biographia’ is closed to new replies.