欢迎光临
我们一直在努力

处理部分WordPress核心代码或功能,让你的网站更快

建站超值云服务器,限时71元/月

本文目录
[隐藏]

  • 1Open sans 的谷歌字体链接
  • 2admin bar左侧的wordpress logo和链接等
  • 3加载的css和js后面的版本号的问题
  • 4WP前台顶部清理
  • 5移除某些WP自带的小工具
  • 6移除WP为仪表盘(dashboard)页面加载的小工具
  • 7Bonus:加载自定义jQuery库的链接

本文所说的一切,都是为了让你的Wordpress网站更快!

Open sans 的谷歌字体链接

没留意WP从哪个版本开始,为已登录用户加载一个Open sans字族的谷歌字体链接,谷歌吗,你知道的,我们不用的,并且不仅仅是不用的问题,还涉及到速度的问题,所以,要清理掉,如何做呢?请安装 Remove Open Sans font Link from WP core  ,因为这是我的一个用于提升性能的免费插件,所以这不是广告。

admin bar左侧的wordpress logo和链接等

处理部分WordPress核心代码或功能,让你的网站更快

就是上图最左侧的Logo及其子菜单及其链接什么的。

1
2
3
4
add_action( 'admin_bar_menu', 'cwp_remove_wp_logo_from_admin_bar_new', 25 );
function cwp_remove_wp_logo_from_admin_bar_new( $wp_admin_bar ) {
    $wp_admin_bar->remove_node( 'wp-logo' );
}

add_action( ‘admin_bar_menu’, ‘cwp_remove_wp_logo_from_admin_bar_new’, 25 ); function cwp_remove_wp_logo_from_admin_bar_new( $wp_admin_bar ) { $wp_admin_bar->remove_node( ‘wp-logo’ ); }

加载的css和js后面的版本号的问题

处理部分WordPress核心代码或功能,让你的网站更快

看到被加载的css或者js后面的?ver=xxx不说什么了,干掉吧:

1
2
3
4
5
if(!function_exists('cwp_remove_script_version')){
    function cwp_remove_script_version( $src ){  return remove_query_arg( 'ver', $src ); }
    add_filter( 'script_loader_src', 'cwp_remove_script_version' );
    add_filter( 'style_loader_src', 'cwp_remove_script_version' );
}

if(!function_exists(‘cwp_remove_script_version’)){ function cwp_remove_script_version( $src ){ return remove_query_arg( ‘ver’, $src ); } add_filter( ‘script_loader_src’, ‘cwp_remove_script_version’ ); add_filter( ‘style_loader_src’, ‘cwp_remove_script_version’ ); }

干掉之后:

处理部分WordPress核心代码或功能,让你的网站更快

这个有点儿涉及安全的多余的查询已经不存在了,它不存在之后,效率会稍高那么一点点儿,积沙成塔嘛!

WP前台顶部清理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function cwp_header_clean_up(){
    if (!is_admin()) {
        foreach(array('wp_generator','rsd_link','index_rel_link','start_post_rel_link','wlwmanifest_link') as $clean){remove_action('wp_head',$clean);}
        remove_action( 'wp_head', 'feed_links_extra', 3 );
        remove_action( 'wp_head', 'feed_links', 2 );
        remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );
        remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );
        remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 );
        foreach(array('single_post_title','bloginfo','wp_title','category_description','list_cats','comment_author','comment_text','the_title','the_content','the_excerpt') as $where){
         remove_filter ($where, 'wptexturize');
        }
        /*remove_filter( 'the_content', 'wpautop' );
        remove_filter( 'the_excerpt', 'wpautop' );*/
        wp_deregister_script( 'l10n' );
    }
}

function cwp_header_clean_up(){ if (!is_admin()) { foreach(array(‘wp_generator’,’rsd_link’,’index_rel_link’,’start_post_rel_link’,’wlwmanifest_link’) as $clean){remove_action(‘wp_head’,$clean);} remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); remove_action( ‘wp_head’, ‘feed_links’, 2 ); remove_action( ‘wp_head’, ‘parent_post_rel_link’, 10, 0 ); remove_action( ‘wp_head’, ‘start_post_rel_link’, 10, 0 ); remove_action( ‘wp_head’, ‘adjacent_posts_rel_link’, 10, 0 ); foreach(array(‘single_post_title’,’bloginfo’,’wp_title’,’category_description’,’list_cats’,’comment_author’,’comment_text’,’the_title’,’the_content’,’the_excerpt’) as $where){ remove_filter ($where, ‘wptexturize’); } /*remove_filter( ‘the_content’, ‘wpautop’ ); remove_filter( ‘the_excerpt’, ‘wpautop’ );*/ wp_deregister_script( ‘l10n’ ); } }

将上述代码添加进你的Wordpress插件或者正在使用的Wordpress主题的functions.php之后,多余的查询和文件加载的问题已经不存在了。

移除某些WP自带的小工具

请注意:你可以根据自己的实际需要注释掉下面的某行或某些行:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function coolwp_remove_meta_widget() {
     unregister_widget('WP_Widget_Pages');
     unregister_widget('WP_Widget_Calendar');
     //unregister_widget('WP_Widget_Archives');
     unregister_widget('WP_Widget_Links');
     unregister_widget('WP_Widget_Meta');
    // unregister_widget('WP_Widget_Search');
      // unregister_widget('WP_Widget_Text');
     unregister_widget('WP_Widget_Categories');
     unregister_widget('WP_Widget_Recent_Posts');
     unregister_widget('WP_Widget_Recent_Comments');
     unregister_widget('WP_Widget_RSS');
     unregister_widget('WP_Widget_Tag_Cloud');
     unregister_widget('WP_Nav_Menu_Widget');
    /*register my custom widget*/
    register_widget('WP_Widget_Meta_Mod');
}
add_action( 'widgets_init', 'coolwp_remove_meta_widget',11 );

function coolwp_remove_meta_widget() { unregister_widget(‘WP_Widget_Pages’); unregister_widget(‘WP_Widget_Calendar’); //unregister_widget(‘WP_Widget_Archives’); unregister_widget(‘WP_Widget_Links’); unregister_widget(‘WP_Widget_Meta’); // unregister_widget(‘WP_Widget_Search’); // unregister_widget(‘WP_Widget_Text’); unregister_widget(‘WP_Widget_Categories’); unregister_widget(‘WP_Widget_Recent_Posts’); unregister_widget(‘WP_Widget_Recent_Comments’); unregister_widget(‘WP_Widget_RSS’); unregister_widget(‘WP_Widget_Tag_Cloud’); unregister_widget(‘WP_Nav_Menu_Widget’); /*register my custom widget*/ register_widget(‘WP_Widget_Meta_Mod’); } add_action( ‘widgets_init’, ‘coolwp_remove_meta_widget’,11 );

上面是我根据某个项目的实际需要移除了若干小工具的代码,没被注释掉的会被移除。

移除WP为仪表盘(dashboard)页面加载的小工具

这个就可以放心大胆的全部移除了:

1
2
3
4
5
6
7
8
9
10
11
12
function cwp_remove_dashboard_widgets() {
    global $wp_meta_boxes;
    unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']);
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
    unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
    unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
}
add_action('wp_dashboard_setup', 'cwp_remove_dashboard_widgets',11 );

function cwp_remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_quick_press’]); unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_incoming_links’]); unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_right_now’]); unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_plugins’]); unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_recent_drafts’]); unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_recent_comments’]); unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_primary’]); unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_secondary’]); } add_action(‘wp_dashboard_setup’, ‘cwp_remove_dashboard_widgets’,11 );

Bonus:加载自定义jQuery库的链接

这么做的目的也是为了让网站更快。

请注意:加载自定义jQuery的链接的时候,jquery migrate将不会被加载,这意味着:如果你使用下面的代码加载外链的jQuery库,并且你的主题或者插件中的js使用了被新版本jQuery弃用的API或者函数的话,那些代码有可能会失效;如果你用的主题和插件版本都比较新,那么,你可以放心的使用下面的代码:

1
2
3
4
5
6
7
8
9
/*Using SinaApp jQuery CDN*/
function cwp_modify_jquery() {
    if (!is_admin()) {
        wp_deregister_script('jquery');
        wp_register_script('jquery', 'http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js', false, '1.9.1');
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'cwp_modify_jquery'
赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 处理部分WordPress核心代码或功能,让你的网站更快
分享到: 更多 (0)