【WordPress】親カテゴリーに属している投稿を判別して条件分岐をする方法

functions.phpに以下のコードを記述

if ( ! function_exists( 'post_is_in_descendant_category' ) ) {
    function post_is_in_descendant_category( $cats, $_post = null ) {
        foreach ( (array) $cats as $cat ) {
            $descendants = get_term_children( (int) $cat, 'category' );
            if ( $descendants && in_category( $descendants, $_post ) )
                return true;
        }
        return false;
    }
}

if文の書き方

<?php if ( in_category('親カテゴリID') || post_is_in_descendant_category('親カテゴリID') ): ?>
    // 「親カテゴリ」に属していたら出力される内容
<?php else: ?>
    //  それ以外の出力内容
<?php endif; ?>

1 COMMENT

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA