wordpress使用inove主题如何增加版权和本文链接
在inove主题中single.php模板找到<?php the_content(); ?>处改为如下所示
<div>
<?php the_content(); ?>
<p>原创文章转载请注明出处:<a href="http://www.ajaxcn.net">云飞扬IT的blog</a></p>
<p>本文链接: <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_permalink(); ?></a></p>
<div></div>
</div>
原创文章转载请注明出处:云飞扬IT的blog