wordpress网站全方位速度优化

2024-07-23 0 628

functions.php 有什么用

functions.php 是 WordPress 预留的功能函数文件,专门用于添加各种自定义函数代码。现在的WordPress主题的功能越来越强大了,一般都自带了 functions.php 这个文件(通常在主题根目录)。

php中的注释

注释,就是专门用来对代码进行补充说明的文本,一般分为单行注释和多行注释,单行注释使用两个斜杠 // ,多行注释使用 /* */

WordPress 加速的一个要点就是能不用插件就不要用插件,插件越多网站越慢

禁用谷歌字

/** * WordPress 后台禁用Google Open Sans字体,加速网站 */
add_filter( ‘gettext_with_context’, ‘wpdx_disable_open_sans’, 888, 4 );
function wpdx_disable_open_sans( $translations, $text,$context, $domain ) {
if ( ‘Open Sans font: on or off’ == $context && ‘on’ == $text ) {
$translations = ‘off’; } return$translations;}

替换 Gravatar

使用 V2EX 的 Gravatar 镜像来代替原来的,支持 HTTPS。

function get_ssl_avatar($avatar) {
$avatar = preg_replace(‘/.*\/avatar\/(.*)\?s=([\d]+)&.*/’,
<img src=”https://cdn.v2ex.co/gravatar/$1?s=$2″ class=”avatar avatar-$2″ height=”$2″ width=”$2″>’,$avatar);
return $avatar;}
add_filter(‘get_avatar’, ‘get_ssl_avatar’);

强制jquery库文件底部载入

将 JS 放到最后加载,有利于提高网站加载效率

//强制jquery库文件底部载入
function ds_print_jquery_in_footer( &$scripts) { if ( ! is_admin() )
$scripts->add_data( ‘jquery’, ‘group’, 1 );}
add_action(‘wp_default_scripts’, ‘ds_print_jquery_in_footer’ );

删除 WP 头不需要的代码

/删除 wp_head 中无关紧要的代码
remove_action(‘wp_head’, ‘rsd_link’);
remove_action(‘wp_head’, ‘wlwmanifest_link’);
remove_action(‘wp_head’,‘wp_generator’);
remove_action(‘wp_head’, ‘start_post_rel_link’);
remove_action(‘wp_head’,‘index_rel_link’);
remove_action(‘wp_head’, ‘adjacent_posts_rel_link’);

禁用 Emoji 功能

/* 禁用 Emoji 功能 */
remove_action(‘admin_print_scripts’, ‘print_emoji_detection_script’);
remove_action(‘admin_print_styles’,‘print_emoji_styles’);
remove_action(‘wp_head’, ‘print_emoji_detection_script’, 7);
remove_action(‘wp_print_styles’, ‘print_emoji_styles’);
remove_action(’embed_head’, ‘print_emoji_detection_script’);
remove_filter(‘the_content_feed’, ‘wp_staticize_emoji’);
remove_filter(‘comment_text_rss’, ‘wp_staticize_emoji’);
remove_filter(‘wp_mail’, ‘wp_staticize_emoji_for_email’);

屏蔽文章 Embed 功能

remove_action(‘rest_api_init’, ‘wp_oembed_register_route’);
remove_filter(‘rest_pre_serve_request’,‘_oembed_rest_pre_serve_request’, 10, 4);
remove_filter(‘oembed_dataparse’, ‘wp_filter_oembed_result’, 10);
remove_filter(‘oembed_response_data’, ‘get_oembed_response_data_rich’, 10, 4);
remove_action(‘wp_head’,‘wp_oembed_add_discovery_links’);
remove_action(‘wp_head’, ‘wp_oembed_add_host_js’);

关闭 XML-RPC 功能

// 关闭 XML-RPC 功能
add_filter(‘xmlrpc_enabled’, ‘__return_false’);

屏蔽 REST API

// 屏蔽 REST API
add_filter(‘rest_enabled’, ‘__return_false’);
add_filter(‘rest_jsonp_enabled’, ‘__return_false’);

屏蔽其他无用功能

// Disable auto-embeds for WordPress >= v3.5
remove_filter( ‘the_content’, array( $GLOBALS[‘wp_embed’], ‘autoembed’ ), 8 );
add_filter(‘automatic_updater_disabled’, ‘__return_true’);
// 彻底关闭自动更新
remove_action(‘init’, ‘wp_schedule_update_checks’);
// 关闭更新检查定时作业
wp_clear_scheduled_hook(‘wp_version_check’);
// 移除已有的版本检查定时作业
wp_clear_scheduled_hook(‘wp_update_plugins’);
// 移除已有的插件更新定时作业
wp_clear_scheduled_hook(‘wp_update_themes’);
// 移除已有的主题更新定时作业
wp_clear_scheduled_hook(‘wp_maybe_auto_update’);
// 移除已有的自动更新定时作业
remove_action( ‘admin_init’, ‘_maybe_update_core’ );
// 移除后台内核更新检查
remove_action( ‘load-plugins.php’, ‘wp_update_plugins’ );

郑重声明:
1.本站所有源代码资源数据均来自互联网,如无特殊说明或标注,版权归原作者所有,我们仅提供测试使用,请在下载后24小时内删除
2.下载后请第一时间查杀后门以及病毒文件,本站已经安全检测过,不能保证查的彻底。
3.任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。
4.如若本站内容侵犯了原作者的合法权益,可联系我们进行删除
5.源码功能,完整性,搭建问题,使用操作等特殊问题,由于时间成本关系,本站客服不免费解答,请见谅。
6.本站搭建成功,你未能搭建起来,请按说明,检查环境是否匹配,或者下载本站其他源码测试。未标测试和附带说明的源码请自行研究。
7.我们不作任何承诺,也不保证100%可用,本站也尽最大能力搜集一些完整的源码进行整理测试发布.购买或者下载后,不支持任何退款理由,感谢理解!
8.本站所有资源都来自互联网,我们只负责整理分享,如果您的要求非常高,请找专业的网站开发公司!

521源码 学习教程 wordpress网站全方位速度优化 https://www.111685.com/shipinsucai/shipin/7308.html

Avatar photo

一个只做精品源码资源整合的搬运工!

常见问题
  • 资源,源代码均来自网络,某一套代码完整性功能并未满足您,请勿责怪,下载其他尝试,部分残缺的源码,只适合学习用,本站不做任何源码部署相关问题。
查看详情
  • 最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议重新下载即可!
查看详情

相关文章

发表评论
暂无评论