$the_paged,
'post_type' => 'post',
'ignore_sticky_posts' => 1,
'meta_key' => SWELL_CT_KEY,
'orderby' => 'meta_value_num',
'order' => 'DESC',
];
$the_query = new WP_Query( $args );
// 新着投稿一覧 ( Sub loop )
SWELL_Theme::get_parts( 'parts/post_list/loop_sub', [
'query' => $the_query,
'list_args' => ['show_pv' => true ],
] );
SWELL_Theme::get_parts( 'parts/post_list/item/pagination', [
'pages' => $the_query->max_num_pages,
'paged' => $the_paged,
] );
?>