function titleRestrictionFilter($title){ global $post; $title = $post->post_title; $restrictedWord = "forbidden"; if (stristr( $title, $restrictedWord)) wp_die( __('Error: This title is containing restricted word') ); } add_action('publish_post', 'titleRestrictionFilter');
Subscribe
Login
0 Comments
Most Voted