You are now in Dicas

Output which theme template file a post/page is using in the header of WordPress

This is a tip to help developers when creating or editing a WordPress template. This is a dead simple code and is especially useful for big templates (like a magazine style or e-commerce). It will show which template are being currently used by WordPress. add_action(‘wp_head’, ‘show_template’); function show_template() { global $template; print_r($template); }

Veja Mais

Modify the Login Logo & Image URL on your WordPress Login Form

Ever wondered how to change the logo of your WordPress Login Form in order to make it more customized? This is something especially useful when you’re selling the site to a customer. Here’s how to do it. The code will allow you to easily modify the WordPress Login page Logo as well as the href [...]

Veja Mais

How To Enable Hidden Admin Feature displaying ALL WordPress Settings

Ever wondered how to enable all WordPress Site configuration on your admin interface? This may be useful mostly when you want to avoid have to access the database of your blog just to change some minor configuration. In order to make it work just paste the code bellow in your functions.php file // CUSTOM ADMIN [...]

Veja Mais

WordPress é a prova que sucesso e qualidade não precisam andar juntos

WordPress é sem dúvida hoje a plataforma CMS mais popular no mundo e também a que mais cresce ( e em ritmo acelerado, diga-se). Sim, para o usuário final ele tem uma interface maravilhosamente simples de usar, e boa parte da grande distribuição de conteúdo que temos na web hoje é consequência disso, afinal, qualquer [...]

Veja Mais

Read Next