修改wordpress主题中的functions.php文件,让网站飞起来

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' ); 
// 移除后台插件更新检查
remove_action( 'load-update.php', 'wp_update_plugins' );
remove_action( 'load-update-core.php', 'wp_update_plugins' );
remove_action( 'admin_init', '_maybe_update_plugins' );
remove_action( 'load-themes.php', 'wp_update_themes' ); 
// 移除后台主题更新检查
remove_action( 'load-update.php', 'wp_update_themes' );
remove_action( 'load-update-core.php', 'wp_update_themes' );
remove_action( 'admin_init', '_maybe_update_themes' );

 

版权声明:原创作品,未经允许不得转载,否则将追究法律责任。
本站资源有的自互联网收集整理,如果侵犯了您的合法权益,请联系本站我们会及时删除。
本站资源仅供研究、学习交流之用,若使用商业用途,请购买正版授权,否则产生的一切后果将由下载用户自行承担。
本文链接:子佩工作室https://zptheme.com/1588.html
许可协议:《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权

本站分为普通会员,SVIP会员,永久会员。
SVIP会员新用户注册即送180天,到期后可邀请好友2位/180天进行无限续期。
永久会员支持微信支付在线开通。

积分是本站通用虚拟货币,可用于文章资源购买。
每天签到,评论或点赞文章,或者投稿都可免费获得积分
新用户注册免费赠送2积分 邀请用户注册2位/2积分

如果您已经成功付款但是网站没有弹出成功提示,请联系售后提供付款信息为您处理

本站资源属于虚拟商品,具有可复制性,可传播性,一旦授予,不接受任何形式的退款、换货要求。请您在购买获取之前确认好 是您所需要的资源

需要效果图的,可以联系售后(右侧核保售后,扫码添加或者点击 加入我们-联系客服)。或者微信添加企业微信:子佩工作室

计划书请提供费率条款(现价分红),100起。WP主题一般单个问题30起。主题二开500起,开发新主题3000起。低于1000须全款,其余先支付全款的60%,完成后支付余下的。

资源是指寿险计划书(定制除外),WP主题或插件不包含在永久会员之内!

发表回复

评论(2)