<?php while (have_posts()) : the_post(); //要這個才能帶出 the_title()….等使用函數 ?>
<?php the_title();?>
<?php endwhile; //while1 END ?> //有While就要有 end
//網頁標題 呈現-> 關於我們(網站目前頁面) | 小事一樁(網站標題)
<title><?php wp_title(‘ | ‘, ‘echo’, ‘right’); ?><?php bloginfo(‘name’); ?></title>