function block_comments_with_links( $commentdata ) { if ( preg_match( '/(https?:\/\/|www\.)/i', $commentdata['comment_content'] ) ) { wp_die( __( 'Sorry, comments containing links are not allowed.', 'textdomain' ) ); } return $commentdata; } add_filter( 'preprocess_comment', 'block_comments_with_links' );