前提・実現したいこと
カスタムフィールドを出力させたいです。
そこでlightningテーマでカスタム投稿の個別ページを「single-$posttype.php」で作りたいのですが、どこを基にしたらよいかわかりません。現在読み込まれているファイルは「index.php」となっております。
発生している問題・エラーメッセージ
どこを基にしたらよいか分からず、「single-$posttype.php」を作成しましたが、真っ白。
該当のソースコード
<?php get_header(); ?> <?php if ( apply_filters( 'is_lightning_extend_single', false ) ) : do_action( 'lightning_extend_single' ); else : if ( have_posts() ) : while ( have_posts() ) : the_post(); $template = 'template-parts/post/article-' . esc_attr( $post->post_name ).'.php'; $return = locate_template( $template ); if ( $return && $post->post_name != get_post_type() ){ locate_template( $template, true ); } else { get_template_part( 'template-parts/post/article', get_post_type() ); } endwhile; endif; // if ( have_posts() ) : endif; // if ( apply_filters( 'is_lightning_extend_single', false ) ) : ?> <?php if ( is_single() ) { get_template_part( 'template-parts/post/next-prev', get_post_type() ); } ?> <?php get_footer();?>
試したこと
youtubeやグーグルで調べた。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。