第一步
内容页调用SEO标题:在<title></title>之间加入以下代码: 原代码保留。
复制代码代码:
{dede:field name='typeid' runphp='yes'}
$id=@me
global $dsql
$sql="select seotitle from dede_arctype where id=$id"
$row=$dsql->getOne($sql)
@me=$row["seotitle"]
{/dede:field}
第二步:内容页调用栏目描述
把默认的如下:
<meta name="description" content="{dede:field.description function='html2text(@me)'/}" />
改成:代码如下:
<meta name="description" content="{dede:field name='typeid' runphp='yes'}
$id=@me
global $dsql
$sql="select description from dede_arctype where id=$id"
$row=$dsql->getOne($sql)
@me=$row["description"]
{/dede:field}" />
第三步:内容页调用栏目关键字
把默认的 代码如下:
<meta name="keywords" content="{dede:field.keywords/}" />
改成: 代码如下:
<meta name="keywords" content="{dede:field name='typeid' runphp='yes'}
$id=@me
global $dsql
$sql="select keywords from dede_arctype where id=$id"
$row=$dsql->getOne($sql)
@me=$row["keywords"]
{/dede:field}" />
第四步:内容页调取栏目页标题
复制代码代码如下:
{dede:field name='title'/}-{dede:field name='position' runphp='yes'}
$tc="-"//分隔符
$tw=$GLOBALS['cfg_list_symbol']//调用位置分隔符
@me=html2text(@me)//去除html标签
$tf=split($tw,@me)//分解成数组
for($ta=(count($tf)-2)$ta>=1$ta--){ //循环赋值给$tk
$tk.=trim($tf[$ta]).$tc
}
$tk=substr($tk,0,-1)
@me=$tk//赋值给@me
{/dede:field}-{dede:global name='cfg_webname'/}
网站标题和描述的调用,以及网站栏目页的标题和描述的调用方法就是这么简单,你会了吧。
第一种方法适用于对wordpress不了解的:装一个叫All in One SEO的插件,目前没有中文版,不过网上可以找到这个插件的使用方法,对于不懂英文的完全可以放心,使用这个插件的弊端就是占资源,每个插件都会对占用服务器资源。
第二种方法适用于对wordpress有所了解的:
直接修改head.php源代码,把title标签修改成以下方式。
<title>
<?php
global $page, $paged
if(is_home()){ $options = get_option('xiaohan_options')echo($options['indextitle'])}else{wp_title('|xxx博客', true, 'right')
}
?>
</title>
效果:文章页,栏目页,除了首页之外的任何页面,标题后面都有“xxx博客’”,本来这几个字是首页标题来的,考虑到不符合优化,就改短一点,这个名称可以随意修改成你想要的内容。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)