use wp_get_theme() to get theme author name
As of wordpress 3.4 we're supposed to use wp_get_theme to return theme data.
$theme = wp_get_theme();
//var_dump($theme);
echo $theme-Author;
despite the var_dump indicating the correct string, $theme->Author always returns a hyperlink with the author's name, but linked to the author's site. how can i get just the theme's author name?
Topic wp-get-theme Wordpress
Category Web