
如何用React.js创建一个无头的WordPress网站
wp_blacklist_check ( $author, $email, $url, $comment, $user_ip, $user_agent )
wp_blacklist_check: 这个函数用来检查一个评论是否包含黑名单上的词。
评论是否包含不允许的字符或词语。
function wp_blacklist_check( $author, $email, $url, $comment, $user_ip, $user_agent ) { _deprecated_function( __FUNCTION__, '5.5.0', 'wp_check_comment_disallowed_list()' ); return wp_check_comment_disallowed_list( $author, $email, $url, $comment, $user_ip, $user_agent ); }