The wp-get-theme tag has no wiki summary.
2
votes
1answer
34 views
Get file headers in custom file
in my one of my plugins i have modules (kind of like plugins in a plugin), is there a function like get_plugin_data() or wp_get_theme() that will allow me to get the header section of a custom file ...
0
votes
1answer
28 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
514 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
187 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 ...
