如何设置dedecms标题标签、关键词标签、描述标签
首页调用{dede:arclist typeid='xx' row='调用条数'channelid='文章模型id'addfields='自定义字段名' } [field:自定义字段/]{/dede:arclist}列表调用自定义字段:必须使字段可以在列表的底层模板中获得(自定义字段默认仅能在文档模板显示,启用此选项将使列表查询变慢,如无必要请不要选择)勾上他{dede:listpagesize='调用条数'channelid='文章模型id' addfields='自定义字段名'} [field:自定义字段/]{/dede:list}
您好,织梦云模板很高兴为您解答:
你这个是headhtm里面的代码,请确认您的首页是否引用了这个headhtm。
另外您修改完成后需要更新首页或者整站更新,这样才能看到效果。
希望我的回答能够给您带来帮助!如有问题也可找我帮忙!
首页:
<title>{dede:globalcfg_webname/}</title>
<meta name="keywords" content="{dede:globalcfg_keywords/}" />
<meta name="description" content="{dede:globalcfg_description/}" />
设置是在“系统->系统基本参数->站点设置”里的“网站名称”、“站点默认关键字”、“站点描述”。
栏目页:
<title>{dede:fieldseotitle/}</title>
<meta name="keywords" content="{dede:fieldkeywords/}" />
<meta name="description" content="{dede:fielddescription/}" />
设置是在各栏目“修改->高级选项”里面的“SEO标题”、“关键字”、“栏目描述”。
文章页:
个人经验是文章标题做title和keywords,文章简介做description
<title>{dede:fieldtitle/}</title>
<meta name="keywords" content="{dede:fieldtitle/}" />
<meta name="description" content="{dede:fielddescription/}" />
{dede:arclist row=4 flag=’p'}
[field:globalautoindex/]{/dede:arclist}
这句话的意思就是,如果循环出的是第一个,则添加class=on,否则为空。
楼主你好
可以用这个代码:
{dede:arclist row=14 titlelen=32 noflag='h'}
<li>[field:global runphp='yes' name=autoindex]
$a="<SPAN class='num active'>";
$b="</SPAN>";
$c="<SPAN class='num'>";
if (@me > 3) @me = $c@me$b;
else @me = "<span class='top'>"$a@me$b"</span>";
[/field:global]<a href="[field:arcurl/]">[field:title/]</a></li>
{/dede:arclist}
亲测可以用,代码如下:
前台效果:
这是dedecms默认模板首页最上面的最近更新,希望可以帮到你。
调用完整标题可以使用标签[field:fulltitle/],控制好你的a标签的宽度,然后在a标签的css里面加上
white-space: nowrap;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-moz-binding:url('ellipsisxml#ellipsis');
overflow: hidden;
加上这几个属性后,自动在你a标签的宽度内把后面那变成省略号()!
确实可以用,只要改css就行,然后css这么设置:
<style>
position a:first-child{
background:url(apng) center no-repeat;
color:transparent;
}
</style>
<div class="position">
<a href="">首页</a>
>
<a href="">123</a>
</div>
↓↓后台写法正常调用↓↓
<div class="position">
{dede:field name='position'/}
</div>
理论上讲,给position的第一个a标签加一个背景
然后把后台加进去的首页这两个字的颜色设置成透明
0条评论