WordPress实现文章末尾自动加版权说明
WordPress实现文章末尾自动加版权说明方法很简单,只需要将以下的代码添加到自己使用的模板函数functions.php中。 //文章(包括feed)末尾加版权说明
function deel_copyright($content) {
if( !is_page() ){
$pid = get_the_ID();
$name = get_post_meta($pid, 'from.nam...
标签之前...