Skip to content

Instantly share code, notes, and snippets.

@verytwisty
Created April 8, 2015 09:35
Show Gist options
  • Select an option

  • Save verytwisty/a23cc041dffe4655af00 to your computer and use it in GitHub Desktop.

Select an option

Save verytwisty/a23cc041dffe4655af00 to your computer and use it in GitHub Desktop.
remove actions
<?php
if ( has_action( 'init', 'custom_plugin_code' ) ) {
remove_action( 'init', 'custom_plugin_code' );
add_action( 'init', 'my_content_code' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment