The wp-get-theme tag has no wiki summary.
0
votes
1answer
26 views
Error, when i install new theme
I'm getting following error when I install emphaino theme in WordPress.
The default themes (Twenty Eleven 1.3, Twenty Ten 1.3) are working good. Other themes are also working good.
I am already ...
8
votes
3answers
453 views
Allow user to select a theme to install when they signup
Is it possible to allow a user to select which theme they would like installed from the new site signup page? And once the site is created, it obviously installs whichever theme they chose.
I found ...
2
votes
2answers
185 views
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 ...