我想创建一个插件,在只显示之前(而不是添加到数据库之前)清理注释,主要是url字段,过滤url字段,只允许在包含特定数据的情况下显示此字段,否则我想用安全的内容替换此url字段或将其清除。
(我不希望用户以“test.com”或“example.com”的形式输入url,在这种情况下,我希望将其删除)
如何才能做到这一点,我需要添加到哪个过滤器?
编辑:
根据所选答案,我创建了此插件,以将所有URL重置为空字符串:
<?php
/*
Plugin Name: Get rid of websites before display
*/
function my_custom_remove_website( $comments ) {
foreach ($comments as $k => $comment) {
$comments[$k]->comment_author_url = "";
}
return $comments;
}
add_filter( \'comments_array\', \'my_custom_remove_website\' );
如果这个插件没有使用最佳实践,请随时发表评论或回答。
最合适的回答,由SO网友:Johannes Pille 整理而成
您可能想查看comments_array
滤器
在3.5中,它应用于wp includes/comment模板的第891行。php:$wp_query->comments = apply_filters( \'comments_array\', $comments, $post->ID );