请尝试以下操作:
$args = array(
\'number\' => 100,
\'status\' => \'approve\',
\'post_status\' => \'publish\',
\'post_type\' => \'product\'
);
$comments = get_comments( $args );
您可以根据需要编辑评论的数量。
调试:
可能有什么东西通过
pre_get_comments
钩
要对其进行调试,可以通过以下方式签出SQL查询:
global $wpdb;
printf( \'<pre>%s</pre>\', $wpdb->last_query );
您可以将其直接添加到上面的下方
get_comments()
代码段。
同时检查edit-comments.php
屏幕上是否显示评论及其状态。