【发布时间】:2015-09-15 09:10:26
【问题描述】:
如何将<a class="see_more" href="<?php the_permalink();?>">SEE MORE >></a> 部分附加到摘录的末尾?
<div class="item_content">
<h4><a href="<?php the_permalink();?>"><?php the_title();?></a></h4>
<?php
add_filter('excerpt_length', 'df_new_excerpt_length_30');
the_excerpt();
remove_filter('excerpt_length', 'df_new_excerpt_length_30');
?>
<a class="see_more" href="<?php the_permalink();?>">SEE MORE >></a>
</div>
【问题讨论】: