Disallow Same Post Title
Main Code Please check the auxiliary code after this block /* * Prevent Duplicated Titles * */ if( is_admin() ) // check if we are in the administrative area { add_action( ‘save_post’, ‘wpse_54258_check_for_duplicate_title’, 11, 2 ); add_action( ‘admin_head-post.php’, ‘wpse_54258_check_for_notice’ ); } /* * Checks for more than one post with the same title * * … Read more