使用WP_Query()仅在wordpress中显示10个最近添加的帖子类别名称

时间:2016-12-06 15:05:06

标签: php wordpress wordpress-theming custom-wordpress-pages

现在我正在显示类别列表,如下代码:

<?php
    $arg = array(
       'orderby' => 'name',
       'number'   => 6,
    );
    $categories = get_categories($arg);
    foreach ($categories as $cat) {
?>
     <span class="firstMenuSpan" style="padding-right:34px;color:#000;">
          <a href="?catId=<?php echo $cat->cat_ID; ?>"><?php echo $cat->name; ?></a>
     </span>
<?php
}
?>

现在类别按字母顺序显示,但我需要显示最近添加的帖子类别。

任何想法或代码都会有所帮助。

否则通过内置的WP_Query参数

可以对类别值进行任何排序

我需要澄清一下,我可以借助以下代码的方法获取类别名称:

<?php
    $args = array(
     'numberposts' => 10,
     'offset' => 0,
     'category' => 0,
     'orderby' => 'post_date',
     'order' => 'DESC',
     'include' => '',
     'exclude' => '',
     'meta_key' => '',
     'meta_value' =>'',
     'post_type' => 'post',
     'post_status' => 'draft, publish, future, pending, private',
     'suppress_filters' => true
   );

   $recent_posts = wp_get_recent_posts( $args, ARRAY_A );
?>

如果按上述方法获取类别,我是否可以限制值并将其显示为重复发布类别值的值。

关于上述方法的任何帮助也很有用。

主要报价/目的/要求或终点:

  

只需显示最近更新/添加的帖子的10个类别名称列表作为菜单。

1 个答案:

答案 0 :(得分:2)

有多种方法可以解决此问题,并为您提供所需的列表。我将向您展示几种不同的方法来获取最近10篇帖子的类别列表。

注意:请参阅下面的功能请求解释,因为我给你的代码是第二个。

代码片段1 - 使用WordPress内置插件

第一个代码解决方案执行以下操作:

  1. 获取帖子ID数组
  2. 如果返回一个数组,则从该列表中提取类别。
  3. 我已将功能分解为可重用的单独有目的功能:

    /**
     * Get a list of the most recent Post IDs.
     *
     * @since 1.0.0
     *
     * @return array|false Returns an array of post
     *                      IDs upon success
     */
    function get_most_recent_post_ids() {
        $args = array(
            'posts_per_page' => 10,
            'orderby'        => 'post_date',
            'post_status'    => 'publish',
            'fields'         => 'ids',
        );
    
        $query = new WP_Query( $args );
        if ( ! $query->have_posts() ) {
            return false;
        }
    
        wp_reset_postdata();
    
        return $query->posts;
    }
    
    /**
     * Get the categories of the most recent posts.
     *
     * @since 1.0.0
     *
     * @return array|bool Returns an array of WP_Term objects upon success;
     *                      else false is returned.
     */
    function get_most_recent_posts_categories() {
        $most_recent_post_ids = get_most_recent_post_ids();
        if ( ! $most_recent_post_ids ) {
            return false;
        }
    
        $categories = wp_get_object_terms( $most_recent_post_ids, 'category');
        if ( ! $categories || is_wp_error( $categories ) ) {
            return false;
        }
    
        return $categories;
    }
    

    代码片段2 - 编写自己的SQL查询

    获取此列表的另一种方法是编写本机SQL查询并使用$wpdb。在此代码示例中,我们执行一次数据库命中以获取类别列表。对于每个类别,它返回术语ID,名称和slug供您使用。

    /**
     * Get a list of categories for the most recent posts.
     *
     * @since 1.0.0
     *
     * @param int $number_of_posts Number of the most recent posts.
     *                              Defaults to 10
     * 
     * @return array|bool
     */
    function get_most_recent_posts_categories( $number_of_posts = 10 ) {
        global $wpdb;
    
        $sql_query = $wpdb->prepare(
    "SELECT t.term_id, t.name, t.slug
    FROM {$wpdb->term_taxonomy} AS tt
    INNER JOIN {$wpdb->terms} AS t ON (tt.term_id = t.term_id)
    INNER JOIN {$wpdb->term_relationships} AS tr ON (tt.term_taxonomy_id = tr.term_taxonomy_id)
    INNER JOIN {$wpdb->posts} AS p ON (tr.object_id = p.ID)
    WHERE p.post_status = 'publish' AND tt.taxonomy = 'category'
    GROUP BY t.term_id
    ORDER BY t.term_id ASC, p.post_date DESC
    LIMIT %d;", 
            $number_of_posts );
    
        $categories = $wpdb->get_results( $sql_query );
        if ( ! $categories || ! is_array( $categories ) ) {
            return false;
        }
    
        return $categories;
    }
    

    使用上面的代码

    您可以使用上述两个选项:

    $categories = get_most_recent_posts_categories();
    if ( ! $categories ) {
        return;
    }
    
    foreach ( $categories as $category ) : ?>
        <span class="firstMenuSpan" style="padding-right:34px;color:#000;">
                  <a href="?catId=<?php esc_attr_e( $category->term_id ); ?>"><?php esc_html_e( $category->name ); ?></a>
        </span>
    <?php endforeach;
    

    以上代码获取类别列表。如果没有返回,那么你就拯救了。否则,您可以循环遍历每个列表并构建HTML列表。

    关于代码的一些注意事项:

    1. 如果没有返回任何类别,则代码将失效。如果您在此代码段下方运行其他代码,则需要对此进行调整。
    2. 您希望在将值呈现给浏览器之前正确转义值。请注意,代码使用esc_attr_eesc_html_e。保持您的网页清洁,消毒和安全。
    3. 同样,有多种方法可以完成此功能请求。我给了你两个选择。您可以根据需要调整它们,然后选择适合您需求的那个。

      解释功能请求

      功能请求有两个不同的含义:

        

      只需显示最近更新/添加的帖子的10个类别名称列表作为菜单。

      我们可以按如下方式解释请求:

      1. 从字面上读它,它说我想要10个类别名称期间。我想从最近的帖子中找到它们。
      2. 或者......对于最近10篇帖子(最新的),请获取类别名称列表。
      3. 解释1

        此功能请求的意图存在差异。第一种解释是,无论近期帖子的数量如何,它都需要10个类别。

        让我们考虑一下。如果最后10个帖子中只有5个类别的人口,那么你必须扩大帖子搜索,直到你收集所有10个类别。

        这与第二种解释不同,它需要不同的代码。

        解释2(我使用的那个)

        这篇文章说最后10篇帖子,得到他们的类别。此功能请求更有意义,因为列表与最后和最近的内容相关联。

        确保找到他们想要的版本。