1.移除/修改标题前的“私密”和“密码保护”
在functions.php文件中添加以下代码:
/** * 移除/修改标题前的“私密”和“密码保护” */ add_filter( 'private_title_format', 'change_private_title_format' ); add_filter( 'protected_title_format', 'change_protected_title_format' ); function change_private_title_format( $format ) { return '%s'; } function change_protected_title_format( $format ) { return '%s'; }
2.将“私密”文章用蓝色背景标记
找到输出文章列表的位置(如在 index.php 中):
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> /*将上面代码改为*/ <a <?php if (get_post_status() == 'private' ){echo "class='status_private'";} ?> href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
再到 style.css 样式表中给这个 class='status_private' 添加背景色:
.status_private{ background: #C6EBF5 }
3.解除版权信息屏蔽
在删除 footer.php 中的版权链接后,打开博客会弹出“请勿删除版权信息!务必保留页脚css类.f_bq,方可显示正常。”
找到博客程序下的文件“public_html/blog/wp-content/themes/xx/js/slider.js”,去除以下语句,即可。
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?"":e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!"".replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return"\\w+"};c=1}while(c--){if(k[c]){p=p.replace(new RegExp("\\b"+e(c)+"\\b","g"),k[c])}}return p}('$(g).f(i(){h($("#2 p.1 .3").b==0){$("c").e();$("5").d("<p><a j=\'q\'9=\\"8://6.7.4\\">n!o.1,k。</a></p>")}$("#2 p.1 .3").5("l");$("#2 p.1 .3").m("9","8://6.7.4")});',27,27,"|f_bq|footer_in|banquan|com|html|www|2zzt|http|href||length|body|append|remove|ready|document|if|function|target|方可显示正常|WordPress|attr|请勿删除版权信息|务必保留页脚css类||_0".split("|"),0,{}));
成功了!谢谢