WordPress函数wp_title()

WordPress函数wp_title()

介绍

wp_title( string $sep = '»', bool $display = true, string $seplocation = '' )

wp_title() 是用于显示页面标题的函数,通常和 bloginfo() 一起用。

参数

$sep
(string) (Optional) default is ‘»’. How to separate the various items within the page title.

Default value: ‘»’

$display
(bool) (Optional) Whether to display or retrieve title.

Default value: true

$seplocation
(string) (Optional) Direction to display title, ‘right’.

Default value: ”

示例

无分隔符标题:

<title><?phpwp_title(''); ?></title>

页面标题在前面,博客标题在后面,并且用 “|”隔开:

<title><?php wp_title(''); echo ' | ';  bloginfo( 'name' ); ?></title>

首页显示博客标题,其他页面显示页面标题:

<title>
    <?php if(is_front_page() || is_home()){
        echo get_bloginfo('name');
    } else{
        echo wp_title('');
    }?>
</title>
版权声明
转载请注明本文来源:WordPress函数wp_title()
转载请注明本文地址:https://www.e363.com/1211.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞139赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容