说明:
要实现文章自动添加版权信息有两种:1种是在./wp-content/theme/主题/single.php添加版权信息,第2种是在./wp-content/theme/主题/function.php里添加函数,通过.连接符自动在the_content()后面添加版权信息。这里,我实现的是第2种。
实现:
//直接修改./wp-content/theme/主题/function.php或后台|外观|编辑|选择function.php,在最后添加以下内容
function feed_copyright($content) { if(is_single() or is_feed()) { $content.= '
原创文章,欢迎转载,转载请保留:'.get_the_title().'或'.get_permalink().''; $content.= ""; } return $content; } add_filter ('the_content', 'feed_copyright');
附录:
1.这里,有个问题,当我文章标题太长,这自动会将文章标题换成二行,非常不美观。这里先记下,后面再看看
2.这是摘抄网上的,留着备用
function feed_copyright($content) { if(is_single() or is_feed()) { $content.= '转载请注明来源:'.get_the_title().''; $content.= '本文链接地址:'.get_permalink().''; $content.= ''; $content.= ""; } return $content; } add_filter ('the_content', 'feed_copyright');