How to use WordPress add_filter on child themes
How to use WordPress add_filter on child themes Example 1 In the parent theme, in the functions.php you have: What happens is that you might be tempted, by analogy, to try the following in your child theme: The correct way to implement the hook in your child theme is: Example 2 Let’s extend this furthermore…