帶內容的自定義模板
我們將進一步擴充套件我們的模板,包括頁面標題和內容
<?php
/*
Template Name: Example
*/
get_header();
the_title();
the_content();
get_footer();
如果你想要,你可以用這樣的 HTML 元素包裝它們
<?php
/*
Template Name: Example
*/
get_header();
echo '<h1>' . the_title() . '</h1>';
echo '<section> . 'the_content() . '</section>';
get_footer();
或者,如果你喜歡像普通的 HTML 檔案一樣工作,而不使用 echo
<?php
/*
Template Name: Example
*/
get_header();
?>
<h1><?php the_title(); ?></h1>
<section><?php the_content(); ?></section>
<?php get_footer(); ?>