1
How can I remove the name "Wordpress" from the titles within the administrative panel?
Ex: When you enter the Panel (Dashboard), all pages in the title are named Wordpress, how could I remove that word?
It goes something like this: Painel < Meu Site -- WordPress
I just wanted to: Painel < Meu Site
where add_filter is included?
– Papa Charlie
@Papacharlie Where do I put the code snippets I found here or Somewhere Else on the web?
– brasofilo
@Papacharlie In the vast majority of the themes, it is in the functions.php. More elaborate themes (mostly commercial) have own mechanisms to inject these features (but still through Wordpress’s "API").
– Bruno Augusto
Either use in the functions.php of the theme, or make a plugin. Which in this case would just create a file
.php
with the header http://codex.wordpress.org/Writing_a_Plugin#File_headers and then put in the Wordpress plugins folder.– Claudio Sanches
Excellent! It was 100% Vlw
– Alexandre Lopes
I created a plugin even, it’s much better!
– Alexandre Lopes