I'm developing a plugin to replace a character that google doesn't show it with an accepted character. I want to get all the texts that wordpress returns (content, comments, title, names, etc.) but I don't know what hook should I use to do it. Can anybody help me?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
|
There's a lot of filter hooks available, and your question is rather board. However, generally WordPress-generated content is handled by three hooks:
These filters only moderfy the front-end of your site, meaning that the content will appear unfiltered in the admin area and in the database. You can filter the content attatched to these hooks by writing a PHP function and then registering it with your hook:
To see an example of how these filters can be used, have a look at the |
|||
|
|
