Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress WordPress Hooks - Actions and Filters Filter Functions in WordPress The remove_filter Function

Can you run the remove_filter function directly in the functions.php file, or must you call it from another file?

Just curious if in is necessary to call such functions from other files, or can you run them directly in functions.php to achieve the same goal.

1 Answer

Aaron Munoz
Aaron Munoz
11,177 Points

You can basically run anything through the functions file as long as you use the correct hooks otherwise it might return an error. It's a maze the way Wordpress is built but the point is to require less programming skills.