Elementor全幅を効かせるためのテンプレート

タイトルの通りです。大体この方法で行けるはず…
必要なものがあれば順次入れていくこと
ファイル名は必ず「page-」から始まる名前にすること

<?php
/*
  Template Name : 全幅用テンプレート
*/
?>
<?php
get_header();
if(have_posts()) : 
  while(have_posts()) : the_post();
    the_content();
  endwhile;
endif;
get_footer();
?>
  • X