Where is the best place to use add_filter
add_filter() and add_action() are available before any plugin is loaded. So you can use both in the first line of your plugin or theme. For readability I recommend to group action and filter registrations at the very top of your main file: in a plugin, the file with the plugin header in a theme the … Read more