我是 wordpress 新手,我需要知道如何找到类别 id 而不是类别名称?在 wordpress 中。
任何一个 非常感谢
注册,维姬
我是 wordpress 新手,我需要知道如何找到类别 id 而不是类别名称?在 wordpress 中。
任何一个 非常感谢
注册,维姬
<?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
你试过了吗?
global $wp_query;
$cat_ID = get_query_var('cat');