0

我是 wordpress 新手,我需要知道如何找到类别 id 而不是类别名称?在 wordpress 中。

任何一个 非常感谢

注册,维姬

4

2 回答 2

2
<?php
     $category_id = get_cat_ID('Category Name');
     $q = 'cat=' . $category_id;
     query_posts($q);
     if (have_posts()) : while (have_posts()) : the_post();

     the_content();

     endwhile; endif;
?>

取自 Wordpress Codex:http ://codex.wordpress.org/Function_Reference/get_cat_ID

于 2012-11-29T19:25:45.957 回答
1

你试过了吗?

global $wp_query;
$cat_ID = get_query_var('cat');
于 2012-11-29T19:21:44.760 回答