簡體   English   中英

如何按最近發布日期對Wordpress博客的類別進行排序?

[英]How do I sort categories Wordpress blogs by recent post date?

大家好,我想按最新發布日期排序我的類別。 這意味着當我要添加帖子並將其標記在該類別下時,我希望該類別從最新到舊顯示在頂部。 另外,如果您有隱藏特定類別ID的方法,我也想知道。 我是PHP的新手,希望得到一些幫助,謝謝大家。

碼:

<?php
         $cat_args = array(
     'orderby' => 'date',
     'post_type' => 'products',
     'order' => 'ASC',
     'child_of' => 0,
         );

    $categories =   get_categories($cat_args);

    foreach($categories as $category) {
         echo '<dl>';
         echo '<h3 class="category-name">' . $category->name.'</h3>';

            $post_args = array(
             'numberposts' => -1,
             'category' => $category->term_id
         );

         $posts = get_posts($post_args);

         foreach($posts as $post) {
         ?>
                 <dd><a class="article" target="_blank" href="<?php the_field('article_link') ?>"><?php the_title(); ?></a><span class="news-source"> - <?php the_field('news_source') ?></span><p class="important"><?php the_field('important') ?></p></dd>
         <?php
         }
         //echo '<dd class="view-all"> <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>View all posts in ' . $category->name.'</a></dd>';
         echo '</dl>';
         }
         ?>

首先獲取最新帖子,然后在獲取類別運行后通過categori進行循環。

$args = array( 'numberposts' => '-1' );
    $recent_posts = wp_get_recent_posts( $args );
    foreach( $recent_posts as $recent ){
         echo '<dl>';
         echo '<h3 class="category-name">' . get_the_category_list( ', ', '', $recent["ID"] ).'</h3>';
     $post_args = array(
             'numberposts' => -1,
             'category' => $recent["ID"]
         );

         $posts = get_posts($post_args);
         foreach($posts as $post) {
         ?>
                 <dd><a class="article" target="_blank" href="<?php the_field('article_link') ?>"><?php the_title(); ?></a><span class="news-source"> - <?php the_field('news_source') ?></span><p class="important"><?php the_field('important') ?></p></dd>
         <?php
         }
         //echo '<dd class="view-all"> <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>View all posts in ' . $category->name.'</a></dd>';
         echo '</dl>';
    }
    wp_reset_query();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM