functions.php 中添加如下代码可以实现版本号的隐藏 1https://blog.csdn.net/weixin_34259159/article/details/94605039 12cd /home/wwwroot/default/vermaxcn/wp-content/themes/flatsome/ vi functions.php 1234567891011121314function ludou_remove_wp_version() { return ”; } add_filter(‘the_generator’, ‘ludou_remove_wp_version’); function ludou_remove_wp_version_strings( $src ) { global $wp_version; parse_str(parse_url($src, PHP_URL_QUERY), $query); if ( !empty($query[‘ver’]) && $query[‘ver’] === $wp_version ) { $src = str_replace($wp_version, $wp_version + 82.01, $src); } return $src; } add_filter( ‘script_loader_src’, […]
Category Archives: WordPress代码
WordPress优化技巧:删除CSS和JS文件后面的版本号 1https://www.91wordpress.com/862.html 使用WordPress做完网站以后,当我们查看网站源代码的时候,发现WordPress调用自身或插件的CSS文件和JS文件的后方都带着版本号,如下图: 这样看起来既不美观,又暴漏了我们使用的WordPress的信息,更重要的是,你修改css里面代码时不起做用.所以要去掉。 方法: 12cd /home/wwwroot/default/vermaxcn/wp-content/themes/flatsome/ vi functions.php 增加以下代码: 1234567function sb_remove_script_version( $src ){ $parts = explode( ‘?’, $src ); return $parts[0]; } add_filter( ‘script_loader_src’, ‘sb_remove_script_version’, 15, 1 ); add_filter( ‘style_loader_src’, ‘sb_remove_script_version’, 15, 1 ); add_action(‘login_enqueue_scripts’,’login_protection’); 1systemctl restart nginx.service //重启nginx 刷新时发现这次没有版本号了 12cd /home/wwwroot/default/vermaxcn/wp-content/themes/flatsome/assets/css/ vi flatsome.css body{color:#777; 改成 #000777 1systemctl restart nginx.service 这时发现所有字的颜色都变了.
用代码修改Flatsome背景颜色 例如:bndstone.com 1. chrome或firefox浏览器 打开bndstone.com 2. 空白地方 右键 – 审核元素 [chrome浏览器也叫检查] 3. 可以看到 css位置 https://www.bndstone.com/wp-content/themes/flatsome/assets/css/flatsome.css?ver=3.8.4 123456789101112131415161718192021222324252627282930313233343536box-sizing border-box color rgb(119,119,119) display block font-family lato,sans-serif font-weight 400 line-height 25.6px margin-bottom 0px margin-left 0px margin-right 0px margin-top 0px padding-bottom 30px padding-left 15px padding-right 15px padding-top 0px position relative text-size-adjust 100% width 709px -webkit-font-smoothing /* Safari */ antialiased […]
用代码实现 Page页面 及 Product页面 加 “.html” 12http://zmingcx.com/wordpress-page-link-html-suffix.html http://zmingcx.com/wordpress-page-tags-url-add-html-suffix.html //加插件的方法 123settings > permalinks > Common Settings > Custom Structure > /%postname%.html settings > permalinks > Product permalinks > Custom base > /product/ save change [PAGE页面加”.html”] 12cd /home/wwwroot/default/huajunstone/wp-content/themes/flatsome/ vi functions.php 1234567add_action(‘init’, ‘html_page_permalink’, -1); function html_page_permalink() { global $wp_rewrite; if ( […]