投稿とは別に「Custom Post Type UI」を使って、カスタム投稿タイプ「item(single-items.php)」を作っています。
トップページに、投稿の一覧と、カスタム投稿 'item' の記事を混ぜて表示したいです。
よろしくお願いいたします。
該当のソースコード
functions.php
function pre_get_posts_custom($query) { if( is_admin() || ! $query->is_main_query() ){ return; } if ( $query->is_home() ) { $delete_cat_id_sum = get_theme_mod('toppost_list_cat_delete'); $query->set( 'cat','item',$delete_cat_id_sum ); return; } } add_action( 'pre_get_posts', 'pre_get_posts_custom' );
あなたの回答
tips
プレビュー