有必要使用快捷码在页面上随机显示评论。现在,我使用以下代码使用快捷码输出注释:
add_action(\'wp_head\', function (){
global $postPage, $post;
$postPage = $post;
});
add_shortcode(\'comments_block\',function($attr, $content){
global $post,$postPage;
$savePost = $post;
$post = $postPage;
ob_start();
comments_template();
$output = ob_get_contents();
ob_end_clean();
$post = $savePost;
return $output;
});
这将显示注释,并在其下方显示一个用于添加注释的表单-一切正常。但评论需要随机显示(现在它们是按日期显示的标准)。
我还尝试将此代码与此处提供的代码相结合How can I show comments in random order? , 但我在这方面的知识还不够(
我将非常感谢在这方面提供的任何帮助。