Skip to content

Instantly share code, notes, and snippets.

@dotMastaz
Created May 5, 2015 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotMastaz/e5c1c7321fddbe563610 to your computer and use it in GitHub Desktop.
Save dotMastaz/e5c1c7321fddbe563610 to your computer and use it in GitHub Desktop.
WordPress Post Title Require
function post_title_require($title='') {
if ( '' == $title )
die('Post Title Require');
return $title;
}
add_filter('title_save_pre', 'post_title_require', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment