


ぶーちゃんばあばと水沢観音(3)

農家の新年

我が家の標準作業

じーじとばあばと孫7人

お蚕様とぶーちゃん

ぶーちゃんばあばと水沢観音(2)

ぶーちゃんばあばと水沢観音(1)

add_shortcode('custom_list', function($atts) { $atts = shortcode_atts(array( 'category' => '', // カテゴリー(slug) 'taxonomy' => '', // カスタムタクソノミー名 'term' => '', // カスタムタクソノミーのタームslug 'type' => 'post', 'count' => 5, ), $atts); $args = [ 'post_type' => $atts['type'], 'posts_per_page' => $atts['count'], ]; $tax_query = []; // カテゴリーだけ指定された場合 if (!empty($atts['category'])) { $tax_query[] = [ 'taxonomy' => 'category', 'field' => 'slug', 'terms' => $atts['category'], ]; } // カスタムタクソノミーだけ指定された場合 or 両方指定された場合 if (!empty($atts['taxonomy']) && !empty($atts['term'])) { $tax_query[] = [ 'taxonomy' => $atts['taxonomy'], 'field' => 'slug', 'terms' => $atts['term'], ]; } if (!empty($tax_query)) { // 複数条件はANDで絞り込む $args['tax_query'] = [ 'relation' => 'AND', ...$tax_query, ]; } $query = new WP_Query($args); ob_start(); if ($query->have_posts()) { echo '
投稿が見つかりませんでした。
'; } wp_reset_postdata(); return ob_get_clean(); });