WordPress标题函数使用讲解
WordPress程序是可以动态获取数据库,会根据页面的不同展示不同的页面或者文章标题,今天为大家分享一个标题函数wp_title(),使用wp_title()标题函数调用不同的文章页面显示不同的文章标题。
1、语法:
wp_title( $sep, $echo, $seplocation );
2、参数
$sep:(可选)分隔符。默认值:& raquo; (»)。
$echo:(可选)是否直接显示标题,true表示显示,false表示不显示。默认true。
$seplocation:(可选)分隔符的位置。值为'right'时,显示在文章标题后。其它值,都显示在标题前。默认值:None。
3、案例:
<title><?php wp_title('|', true, 'right'); ?> <?php bloginfo('name'); ?></title>
页面标题会显示为如:(页面标题 | 网站标题 )这样的格式。
4、改造
默认情况下,wp_title()在首页使用是没有效果的,如果想在首页也使用,可以对它进行一些修改。在functions.php中,可以这样改造封装
add_filter( 'wp_title', 'wpdocs_hack_wp_title_for_home' );
function wpdocs_hack_wp_title_for_home( $title ){
if ( empty( $title ) && ( is_home() || is_front_page() ) ) {
$title = __( 'Home', 'textdomain' ) . ' | ' . get_bloginfo( 'description' );
}
return $title;
}
意思是:如果标题为空且在首页,标题就等于站名加描述。
<title><?php wp_title(''); ?></title>
0条评论