为什么分类帖子不能正常工作?

时间:2021-07-10 作者:J. Wick

在通过查询获取帖子时,我尝试了很多方法对帖子进行排序,但如果我使用DESC:

enter image description here

我的代码:

   <?php 
        // the query

        $args = array(               
            \'orderby\' => array(
                \'post_date\' => \'DESC\',
            )
        );

        // The Query
        $the_query = new WP_Query( $args );
        
        // The Loop
        if ( $the_query->have_posts() ) {
            echo \'<ul>\';
            while ( $the_query->have_posts() ) {
                $the_query->the_post();
                echo \'<li>\' . get_the_title() . \'<br>\' . get_the_date().\'</li>\';
            }
            echo \'</ul>\';
        } else {
            // no posts found
        }
        /* Restore original Post Data */
        wp_reset_postdata();
        
   ?>
此外,如果我通过ASC订购,那么订单将是正确的DESC 不起作用。我做错了什么?

1 个回复
SO网友:J. Wick

Fixed by \'ignore_sticky_posts\' => true

相关推荐

从Get_Posts函数获取附件缩略图

如何获取最新wordpress音频媒体上传的id。原因是我想使用音频封面图像/特色图像作为后期特色图像。我是否需要检索音频中缩略图的ID。我尝试了下面的代码,但返回了错误 $attachments = get_posts( array( \'post_type\' => \'attachment\', \'posts_per_page\' => 1, \'post_status\' => null, \'post_mi