test
test
Topic
‘news’,
‘orderby’ => ‘date’,
‘order’ => ‘DESC’,
‘posts_per_page’ => 8,
‘meta_query’ => array(
array(
‘key’ => ‘show_top’, // ACF フィールド名
‘value’ => ‘1’, // チェックが入ったら 1
‘compare’ => ‘=’, // 1 と等しいものだけ
),
),
);
$topic_posts = get_posts( $topic );
if ( $topic_posts ) {
global $post;
foreach ( $topic_posts as $post ) {
setup_postdata( $post );
?>







