wordpress的很多2.3上的主题不会显示tag – 主页index上和每个post的页面里都没有.
怎么把它填回去呢? 今天在网上找到了解决方案.
打开主题编辑
Main Index Template
Single Post
找到相应的位置加入:
<?php the_tags(‘before‘, ‘separator‘, ‘after‘); ?>
我加的是:
<?php the_tags(‘Tags: ‘, ‘, ‘, ‘‘); ?>
放到
<?php the_content(); ?>
后面
Comments are closed.