Hi,
I have a couple of plugins that filter the content as such:
<?php add_filter( "the_content", "plugin_function_name" ) ?>
And I would like to know if there is a way to make sure one is executed before another one or as the first/last one.
Thanks!
Hi,
I have a couple of plugins that filter the content as such:
<?php add_filter( "the_content", "plugin_function_name" ) ?>
And I would like to know if there is a way to make sure one is executed before another one or as the first/last one.
Thanks!
Yes, you can set the priority..
It's the third parameter.
http://codex.wordpress.org/Function_Reference/add_filter
This topic has been closed to new replies.