カスタムテンプレートを使用してWordpress用のカスタム静的フロントページを設定しようとしています。静的なフロントページのカスタムテンプレートは表示されません - Wordpress
landingpage.php
をwp-content/themes/my_theme
に作成し、LandingPageモデルを選択した状態で新しいWordPress管理者ページを作成します。
私がmy_website.com/landing-page/
に行った場合、私のカスタムページが動作し、 'Hello World!'表示されますが、カスタムページを静的なフロントページに設定してmy_website.com/
に行った場合、私の 'Hello World!'メッセージは表示されません。
マイlandingpage.php
コード:
<?php /* Template Name: LandingPage */ ?>
<?php get_header(); ?>
<div class="wrap">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while (have_posts()) : the_post();
get_template_part('template-parts/page/content', 'page');
if (comments_open() || get_comments_number()) :
comments_template();
endif;
endwhile;
?>
<h1>Hello World!</h1>
</main>
</div>
</div>
<?php get_footer();
任意のアイデア? thx
あなたのテーマフォルダに 'front-page.php'ファイルがありますか? – yivi
はい私は 'front-page.php'を持っています – Rubyx