只需打开评论。主题中的php文件。查找以下行(或类似行)
<?php foreach ($comments as $comment) : ?>
在其上方添加此行
if (isset($_GET[\'comOrder\']) && $_GET[\'comOrder\'] == \'Newest\' )
$comments = array_reverse($comments, true);
因此,您的代码如下所示:
<?php if (isset($_GET[\'comOrder\']) && $_GET[\'comOrder\'] == \'Newest\' )
$comments = array_reverse($comments, true);
foreach ($comments as $comment) : ?>
然后确保
newest first
将指向您当前位置的点与
?comOrder=Newest
UPDATE:
如果您正在使用
wp_list_comments
然后简单地添加
reverse_top_level
当单击最新的第一个链接时,参数设置为true,这样应该可以:
$args = array(\'type\' =>\'comments\',\'callback\' => \'mytheme_comment\');
if (isset($_GET[\'comOrder\']) && $_GET[\'comOrder\'] == \'Newest\' )
$args[\'reverse_top_level\'] = true;
wp_list_comments($args);