2022-04-20から1日間の記事一覧

WP カスタム投稿含めたループ

array('wat', 'design_lab','post'), 'posts_per_page' => 5); $news_posts = get_posts($args); if ( !empty($news_posts) ): ?> <ul> <li></li> <li></li></ul>

WP カスタム投稿含めたループ

array('wat', 'design_lab','post'), 'posts_per_page' => 5); $news_posts = get_posts($args); if ( !empty($news_posts) ): ?> <ul> <li></li> <li></li></ul>

WP 月別アーカイブにカスタム投稿も含める

functions.php /** * 月別アーカイブにカスタム投稿も含める */ function my_pre_get_posts( $query ) { if ( $query->is_month() && $query->is_main_query() ) { $query->set( 'post_type', array('post','wat','design_lab') ); } } add_action( 'pre_get…