php - Remove hook in wordpress theme -
php - Remove hook in wordpress theme -
there hook want remove, or stop working template using -
* footer.php hooks */ // footer hook function copious_footer_hook() { do_action('copious_footer_hook'); }
how can create void or stop it?
remove_action( 'copious_footer_hook' );
for more info or options, check: http://codex.wordpress.org/function_reference/remove_action
php wordpress hook footer
Comments
Post a Comment