blog.knym.net | I'm searching something to change my life.

WordPressでカテゴリIDの取得

sidebar.php内でややこしいメニューの階層処理をしてる中で使った。


if(is_category()){
    $cat_ID=get_query_var('cat');
    $cat=get_category($cat_ID);
    if($cat->parent) $cat_IDs[] = $cat->parent;
    $cat_IDs[]=$cat_ID;
}else{
    foreach(get_the_category() as $cat) { 
        $cat_IDs[]=$cat->cat_ID;
    }
}


via シングルやアーカイブで現在属するカテゴリーを取得する方法(WordPress) | とりさんのソフト屋さん

Related Posts

Write a Comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

 

Essentials

Meta

Pages

Categories