gpt4 book ai didi

wordpress - 如何按降序对评论进行排序?

转载 作者:行者123 更新时间:2023-12-02 20:51:36 26 4
gpt4 key购买 nike

我的 WordPress 评论模板有问题。

我想按降序对评论进行排序。

我尝试使用此代码,但没有成功。

array ('order' => 'DESC')

评论模板:

<div class="wpcomments">
<?php if(comments_open()) : ?>
<div class="commentstyle">
<?php if(!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) : ?>
<?php die('You can not access this page directly!'); ?>
<?php endif; ?>
<?php if(!empty($post->post_password)) : ?>
<?php if($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) : ?>
<p>This post is password protected. Enter the password to view comments.</p>
<?php endif; ?>
<?php endif; ?>
<?php if($comments) : ?>
<ol>
<?php foreach($comments as $comment) : ?>
<li id="comment-<?php comment_ID(); ?>">
<div class="commentw">
<?php if ($comment->comment_approved == '0') : ?>
<p></p>
<?php endif; ?>
<div class="comment-avatar"></div>
<div class="comment-left"><b><?php comment_author_link(); ?></b> (<?php comment_date(); ?> <?php comment_time(); ?>)
<div class="comment-below">
<?php comment_text(); ?>
</div>
</div>
</div>
</li>
<?php endforeach; ?>
</ol>
<?php else : ?>
<?php endif; ?>
</div>
<?php endif; ?>
</div>

最佳答案

可以通过admin dashboard来完成或 SQL:

// SELECT * FROM wp_options WHERE option_name LIKE '%comment%'
UPDATE wp_options SET option_value='desc' WHERE option_name='comment_order'

关于wordpress - 如何按降序对评论进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42036433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com