Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chered/839d196e7b3b14b7a4ff1af2d9da6f12 to your computer and use it in GitHub Desktop.
Save chered/839d196e7b3b14b7a4ff1af2d9da6f12 to your computer and use it in GitHub Desktop.
add_action("load-post-new.php", 'block_post');
function block_post()
{
if($_GET["post_type"] == "physician" || "posts" )
wp_redirect("edit.php?post_type=physician");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment