[php] <?php
//子カテゴリ一覧を取得
$cat_child = get_term_children($category->cat_ID ,'category' );
//新規配列に表示させる親カテゴリと非表示の子カテゴリIDを追加
//非表示にするカテゴリはIDの前に「-」マイナスをつける
$args_cat = array($category->…
<?php
//トップページ以外の場合にnot_homeクラスを追加
$body_class = "";
if ( !is_front_page() ) {
$body_class .= ' not_home';
}
?>
<body id="top" <?php body_class( $body_class ); ?>>
graffiti on the web
この投稿へのコメント
コメントはまだありません。