在做 Woredpress SEO 时之前一直为一件事情而苦恼,那就是无法在文章single页面的title上加入分类字段。因为当我们使用<?php the_category(' '); ?>时,会将分类的锚链接也带入进去,这样就会是的title标签出错。
今天再次面对这个问题,361源码决定必须将它解决掉,不能再忽视过去。因此在网上找到了一个可实行方案。只不过这个方法,需要在header.php页面单独写title内容,无法使用<?php wp_title(); ?>了。
获取分类文字代码如下:
<?phpif(is_single()){$categories=get_the_category();echo $categories[0]->cat_name;}?>
将上述代码写入页面后,将会调取出本文的分类文字。但测试后发现自身含有多分类文章,无法全部显示。
在header.php上具体实现如下:
<?php if ( is_home() ) : ?><title>网站名称</title><?php elseif ( is_single() ) : ?><title><?php the_title(); ?> | <?phpif(is_single()){$categories=get_the_category();echo $categories[0]->cat_name;}?> | 网站名称</title><?php else : ?><title><?php wp_title( '|', true, 'right' ); ?></title><?php endif; // title ?>
完成。
新闻热点
疑难解答
图片精选