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 in the list_article.htm list page template and add it ALT attribute.
After modification:
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 tag.
Solution:
Modify the /include/arc.listview.class.php file and find the following code (v5.6 is line 745)
$row['title'] = "<b>".$row['title']."</b>";
Modify to:
$row['title'] = $row['title'];
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!