dede57 img alt标签怎么调用img title标签,非调用文章title标题。

dede57 img alt标签怎么调用img title标签,非调用文章title标题。,第1张

dedecms调用指定栏目代码如下:

{dede:arclist row=3 titlelen=20 orderby=pubdate type='image' imgwidth='152' imgheight='98'} <dd><a href="[field:arcurl/]"><img src="[field:picname/]" alt="[field:title/]" ></a><span><a title="[field:title function='htmlspecialchars(@me)'/] " href="[field:arcurl /]"{dede:field name="title"/}></span> </dd>{/dede:arclist}</a><span><a title="[field:title function='htmlspecialchars(@me)'/] " href="[field:arcurl /]">{dede:field name="title"/}</span> </dd>

这个概念你可能有点混淆

为了更好的SEO我们一方面将更多的无关设置为网页的背景 所以使用backround 或是background-img两上属性来进行,使搜索引擎在爬行内容时过滤这些无关的 或是修饰用的

另一方面在上使用alt标签来进行 其相关性说明 以有利于搜索引擎收录 排名如<img src="jpg" alt="怎么添加alt" />

你好 示例如下

var str1=$("img")attr("title") 获取一个img的 title属性的值

此时的str1 就是 个人和组织能起诉涉污企业并获得赔偿么

如果是其他属性 请将 title 换成属性名 即可

希望能帮到你 谢谢

你好,这个论坛我还没用过。我在网上给你找的答案,仅供参考吧:

这是给加alt 和title ,你说的H1 不用添加的 因为一个页面就一个H1 如果用户发帖带H1 那不符合要求 ,。

第一步:用FlashFXP FTP工具打开FTP空间,再根目录路径/htdocs/template/default/forum/找到discuzcodehtm文件,下载后用sublime text3打开,

第二步:在sublime text3中搜索如下字段CTRL+F搜索<img{if $attach['price'] && $_G['forum_attachmentdown'],找到后在它的src="{STATICURL}image/common/nonegif" 在这段代码后面加上如下代码:alt="$_G[forum_thread][subject]" title="$attach[description]"这样就会自动获得alt属性为标题,title为描述,图中2处位置都要添加代码。

解释:

$_G[forum_thread][subject]  文章标题$_G[setting][sitename] 网站名称$attach[imgalt] 名称

title="$attach[description]"描述(发帖时插入填写的描述)

保存后上传到原来的位置替换源文件discuzcodehtm,再到discuz管理后台刷新缓存,按住F12用工具查看添加状况。

[field:litpic /]或者{dede:fieldlitpic /}

<!--这是调用文章缩略图的标签,前面的是在arclist等列表标签中调用的,后者是在文档内容页面调用文档详细信息中用的,本经验来自IT零五网-->

{dede:field name='imgurls' alt='输出区'}

     [field:pagestyle runphp='yes'] @me= (@me==3  '<li>' : '');[/field:pagestyle]

     <a href='[field:linkurl/]' [field:pagestyle runphp='yes'] @me= (@me==3  'class="pic"' : ''); [/field:pagestyle]>

     <img src='[field:imgsrc/]' id='bigimg' [field:imgwidth /] alt='[field:alttext /]' border='0' />

     </a>

     <a href='[field:linkurl/]' [field:pagestyle runphp='yes']@me = (@me==3  'class="title"' : '');[/field:pagestyle]>

     [field:title /]

     </a>

     [field:pagestyle runphp='yes'] @me = (@me==3  '</li>' : ''); [/field:pagestyle]

{/dede:field}

<!--上面是图集内容输出的标签,本经验来自IT零五网-->

这个你可以通过修改搜索模板文件来达到你的要求。默认的搜索结果是显示内容标题,你可以通过重新编写调用代码来实现,可以用arclist来实现,默认的是用LIST标签来调用。最好是将栏目属性设置成“模型”这样更利于调用内容。不然调用效果也不是很好。

{dede:productimagelist}

                        <li><a href="[field:imgsrc/]" >

                            <img src="/plus/thumbphpdopost=ddimg&img=[field:imgsrc/]" alt="[field:text/]" class="image1"  />

                         </a>

                        </li>

{/dede:productimagelist}

上面用到的文件/plus/thumbphp代码如下

<php

require_once("/include/commonincphp");

require_once('/include/imagefuncphp');

if($dopost=='ddimg')

{

    //生成缩略图

    ob_start();

    if(!preg_match("/^(http:\/\/)([^\/]+)/i", $img)) $img = $cfg_basedir$img;

    ImageResizeNew($img, $cfg_ddimg_width, $cfg_ddimg_height, '', false);

    $imagevariable = ob_get_contents();

    ob_end_clean();

    header('Content-type: image/jpeg');

    header('Content-Length: 'strlen($imagevariable));

    echo $imagevariable;

    exit();

}

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » dede57 img alt标签怎么调用img title标签,非调用文章title标题。

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情