1. 隐藏所有更新通知的方法
獲取最新版本會需要連結到官方資料庫,當遇到遠端不順的情況下,網站就會卡住 !
因此,建議可將更新通知都處理掉 ~
建議可於wp後台搜尋安裝以下插件:
Disable WordPress Core Updates – 禁用WordPress核心更新通知
Disable WordPress Theme Updates – 禁用主题更新通知
Disable WordPress Plugin Updates - 禁用插件更新通知
2. 隱藏管理列左上方的Wordpress logo圖樣標示和以下鏈接
手動.添加以下代碼至主題的 function.php 中- 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' );
- }
複製代碼 3. 載入的css和js後面具有版本號的問題
手動.添加以下代碼至主題的 function.php 中- 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' );
- }
複製代碼 4. 網站前台頁首不必要程式碼移除
可解決多餘的查詢和文件加載的問題
手動.添加以下代碼至主題的 function.php 中- 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' );
- }
- }
複製代碼
|