Skip to content

Instantly share code, notes, and snippets.

@verytwisty
Created April 10, 2015 08:23
Show Gist options
  • Select an option

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

Select an option

Save verytwisty/89bfdc35a4242b641c57 to your computer and use it in GitHub Desktop.
if has action
<?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