我已经开始为wordpress编写主题。一个问题:
我应该如何分配我制作的每个页面,特定于该页面的标题(在创建页面时由管理员在管理面板中设置)。
Wordpress有一套仲裁页面。例如:
page.php
category.php
single.php
我该如何获取标题呢?感谢
答案 0 :(得分:1)
对于HTML <title>
,您应该在header.php
wp_title()
<title><?php wp_title(); ?></title>
如果您在标题之后进入<h1>
(等),则the_title()
是您需要的标记。最小的page.php文件是这样的:
<?php get_header(); ?>
<?php if (have_posts()):
the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endif; ?>
<?php get_footer(); ?>
答案 1 :(得分:0)
使用<?php wp_title(); ?>
,您可以获得所需的当前页面的标题。除此之外,请参考标题WordPress.org documentation。