Skip to content

Instantly share code, notes, and snippets.

@engelen
Created April 8, 2014 09:57
Show Gist options
  • Save engelen/10105776 to your computer and use it in GitHub Desktop.
Save engelen/10105776 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cac/post_types', 'myplugin_cac_disable_posttype_post' );
function myplugin_cac_disable_posttype_post( $post_types ) {
if ( isset( $post_types['post'] ) ) {
unset( $post_types['post'] );
}
return $post_types;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment