Created
August 4, 2016 17:32
-
-
Save ingozoell/0c356f93728e606a60ee803710cead01 to your computer and use it in GitHub Desktop.
Remove Parents Functions WordPress
http://code.tutsplus.com/tutorials/a-guide-to-overriding-parent-theme-functions-in-your-child-theme--cms-22623
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function child_remove_parent_function() { | |
remove_action( 'init', 'parent_function' ); | |
} | |
add_action( 'wp_loaded', 'child_remove_parent_function' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment