请告诉我如何使用wp_title()函数获取WordPress中的每个页面标题。我使用以下代码根据标题在不同的页面中获取标题,但它很有用!
以下是我正在使用的代码
<title>
<?php
if (is_front_page()) {
bloginfo('name'); }
elseif (is_page()) {
wp_title(); echo ' - '; bloginfo('name'); }
?>
</title>
答案 0 :(得分:1)
试试这个:
<?php wp_title('|', true, 'right'); ?>
以下是功能参考链接:http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_title
干杯!
答案 1 :(得分:0)
你可以使用
<title>
<?php
if ( is_home() ) {
bloginfo('name');
} else {
wp_title('',true,'');
echo " | ";
bloginfo('name');
}
?>
</title>