将以下代码直接加入到主题函数中。注:将其中链接换成那你自己的网站

//添加文章版权信息 
function copyright($content) { 
if(is_single()||is_feed()) { 
$content.='<div style="border:1px dashed #ddd; padding:10px; margin:10px 0;line-height:26px;border-radius: 3px;"><div>» <b>本文出自 '.get_bloginfo('name').',转载时请注明出处及相应链接。</b></div><div>» <b>本文链接:</b><a href="'.get_permalink().'" title="'.get_the_title().'">'.get_permalink().'</a></div><div> » <b>订阅本站:</b><a title="EQblog" href="https://eqblog.com/feed" rel="external nofollow">https://eqblog.com/feed</a></div><div> </div></div>'; 
} 
return $content; 
} 
add_filter ('the_content', 'copyright');