WordPress Snippets at WPcustoms

Get theme info from style.css

If you want to show theme infos in your template you can grab them with these codes.


/**
 * Snippet Name: Get theme info from style.css
 * Snippet URL: https://wpcustoms.net/snippets/get-theme-info-from-style-css/
 */
  $theme_data = wp_get_theme();
echo $theme_data->get( 'Name' );        
echo $theme_data->get( 'ThemeURI' );
echo $theme_data->get( 'Description' );
echo $theme_data->get( 'Author' );
echo $theme_data->get( 'AuthorURI' );
echo $theme_data->get( 'Version' );
echo $theme_data->get( 'Template' );
echo $theme_data->get( 'Status' );
echo $theme_data->get( 'Tags' );
echo $theme_data->get( 'TextDomain' );
echo $theme_data->get( 'DomainPath' );