10
09/2014
wordpress wp_title
循环外使用。
Usage
<?php wp_title( $sep, $display, $seplocation ); ?>
$sep 显示在 post title 前(后)的文字。默认是 »(»)
$display true 显示;false 返回变量而不是输出
<?php $thisTitle=wp_title('',false); ?>
$seplocation 默认(除了 ‘right’ 以外的值) $sep 在前
首页
<title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>
If you are using a static page as a custom homepage, the above code should be changed to:
<title><?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
via wp_title