Home >CMS Tutorial >DEDECMS >How to add alt attribute to article thumbnail on DreamWeaver cms list page

How to add alt attribute to article thumbnail on DreamWeaver cms list page

藏色散人
藏色散人Original
2020-01-03 09:32:322376browse

How to add alt attribute to article thumbnail on DreamWeaver cms list page

How to add the alt attribute to the article thumbnail on the DreamWeaver cms list page?

How to add alt attributes to the article thumbnails on the list page of Dreamweaver cms

Recommended learning: Dreamweaver cms

This method, It can better improve the related settings of on-site optimization, just like the automatic ALT annotation plug-in for article pictures we developed, which is also conducive to image optimization to bring traffic.

Existence of problems

The thumbnail image of the default DedeCms default list page lacks the ALT attribute, which is poor for search engines to recognize the image.

Solution

Find 09481f7cff59887564c371c045ed8abe in the list_article.htm list page template and add it ALT attribute.

After modification: 4160a3302763b20ffbbc33f41a859720

Note: By the way, the width and height attributes are added to the image.

After the modification, a new problem appeared. That is, when an article is recommended, the code has an additional a4b561c25d9afb9ac8dc4d70affff419 tag.

Solution:

Modify the /include/arc.listview.class.php file and find the following code (v5.6 is line 745)

$row[&#39;title&#39;] = "<b>".$row[&#39;title&#39;]."</b>";

Modify to:

$row[&#39;title&#39;] = $row[&#39;title&#39;];

The above is the detailed content of How to add alt attribute to article thumbnail on DreamWeaver cms list page. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn