首页 > 首页 > 杂七杂八 > Wordpress > frontopen2主题优化记录
2022
05-29

frontopen2主题优化记录

1、去掉方法frontopen2主题标签云中()得方法

源代码

//标签tag所包含的文章数量
function Tagno($text) {
$text = preg_replace_callback('|<a (.+?)</a>|i', 'tagnoCallback', $text);
return $text;
}
function tagnoCallback($matches) {
$text=$matches[1];
preg_match('|title=(.+?)style|i',$text ,$a);
preg_match("/\d+/",$a[1],$a);
return "<a ".$text ." (".$a[0].")</a> ";
}
add_filter('wp_tag_cloud', 'Tagno', 1);

新代码

//标签tag所包含的文章数量
function Tagno($text) {
$text = preg_replace_callback('|<a (.+?)</a>|i', 'tagnoCallback', $text);
return $text;
}
function tagnoCallback($matches) {
$text=$matches[1];
preg_match('|title=(.+?)style|i',$text ,$a);
preg_match("/\d+/",$a[1],$a);
return "<a ".$text ." </a> ";
}
add_filter('wp_tag_cloud', 'Tagno', 1);

2、隐藏wordpress后台登陆地址

将下面的代码添加到当前主题的 functions.php 文件:

//保护后台登录

add_action('login_enqueue_scripts','login_protection');  

function login_protection(){  

    if($_GET['www'] != 'abc')header('Location: http://www.jiagou.cc/');  

}

这样一来,后台登录的唯一地址就是http://www.jiagou.cc/wp-login.php?www=abc,如果不是这个地址,就会自动跳转到 http://www.jiagou.cc

frontopen2主题优化记录 - 第1张  | 架构迷
最后编辑:
作者:摘星怪
这个作者貌似有点懒,什么都没有留下。

frontopen2主题优化记录》有 1 条评论

留下一个回复

你的email不会被公开。