一般wordpress主题在文章页面的底部都会有添加标签(tags),假如没有,也不用慌,下面就告诉你WordPress文章页面标签tags调用方法:
单触角蚂蚁的文章页面底部显示的标签(tags)
1、后台→外观→编辑,打开文章页模板single.php,在你需要显示标签(tags)的地方,添加下面的代码:
- <div id="article-tag">
- <?php the_tags(‘<strong>标签:</strong> ‘, ‘ , ‘ , ‘‘); ?>
- </div>
2、为了更好看些,后台→外观→编辑,打开你的CSS样式文件style.css,添加下面的CSS样式:
- /*tags style*/
- #article-tag { clear: both; border: 1px dotted #ccc; padding: 5px; margin-bottom: 5px; }
- #article-tag,
- #article-cnt #article-tag a { text-decoration: none; color: #666; }
- #article-cnt #article-tag a:hover { text-decoration: underline; }
原文地址:https://www.cnblogs.com/pz12389/p/11830164.html
时间: 2024-12-30 10:01:15