我有一个名为“流派”的自定义分类法,其中有各种分类法:“绘画”“绘画”等。我使用下面的代码创建页面标题。
当查看“绘画”的分类页面时,我会得到一个页面标题“绘画|流派|博客名”,而我只想显示:“绘画|博客名”,我该怎么做?
<title><?php
/* Print the <title> tag based on what is being viewed */
global $page, $paged;
wp_title( \'|\', true, \'right\' );
// Add the blog name.
bloginfo( \'name\' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( \'description\', \'display\' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
?></title>