Está procurando uma maneira de exibir dados do arquivo de tema do WordPress, como nome, título, URI, etc.? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para exibir informações sobre o tema com wp_get_theme
.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
<?php $theme_data = wp_get_theme(); echo $theme_data->get( 'Name' ); // Theme name as given in style.css 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' ); ?>
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress para não danificar acidentalmente seu site.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 9 melhores plug-ins imobiliários do WordPress e como proteger seus formulários do WordPress com proteção por senha.
This function has been deprecated. That means it has been replaced by a new function or is no longer supported
Thanks for the heads up, I updated the snippet, Cheers.
Hi Cliff, technically you could however that would not be a good way of doing things. I would suggest using something like jquery to let people change stylesheets. This tutorial should help you get started with that.
http://www.cssnewbie.com/simple-jquery-stylesheet-switcher/
I love this feature!
You can also call the css file by using get_stylesheet_uri() that way you don’t have to set the theme name:
$theme_data = get_theme_data(get_stylesheet_uri());
Ahh good call Gabriel ill have to update the post to include this method.