実現したいこと
こちらのサイト(https://r25.jp/)のTOPページのコラムのレイアウトを実現したいです。
カスタム投稿(column)のタクソノミー(columncategory)のターム(column1290)の最新記事4件を以下画像(PC)のようなレイアウトで出力したいのですが、やり方が分からず困っています。
##現状
最新記事4件を出力している状態です。
現状横並びに4つもしくは縦並びに4つという組み方しか実現できておりません。
<?php $args = array( 'posts_per_page' => '4', 'post_type' => 'column', 'tax_query' => array(array( 'taxonomy' => 'columncategory', 'field' => 'slug', 'terms' => 'column1290' ))); $the_query = new WP_Query($args); ?> <?php if( $the_query->have_posts() ) : while( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php the_title(); ?> <?php endwhile; endif; ?> <?php wp_reset_postdata(); ?>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。