php 从WordPress脚本/样式中删除脚本版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从WordPress脚本/样式中删除脚本版本相关的知识,希望对你有一定的参考价值。

<?php // Do not copy this line. 

/**
 * Remove Script Version
 * 
 * This function removes the query string from the scripts and styles. 
 *
 * Author: Zeshan Ahmed
 * Author URI: https://zeshanahmed.com/
 * 
 * @param string $src Source of the script/style
 * @author Zeshan Ahmed
 * @return string
 */
function wp_remove_script_version( $src ) {
    $src_parts = explode( '?', $src );
    return $src_parts[0];
}
add_filter( 'script_loader_src', 'wp_remove_script_version', 15, 1 );
add_filter( 'style_loader_src', 'wp_remove_script_version', 15, 1 );

以上是关于php 从WordPress脚本/样式中删除脚本版本的主要内容,如果未能解决你的问题,请参考以下文章

PHP 如何从网页中删除HTML标记,脚本和样式

如何在functions.php(wordpress)中加载引导脚本和样式?

从 wordpress 中删除未使用的样式

php 排队WordPress的脚本和样式

php 将wordpress主题的脚本和样式排入队列

从样式和脚本中删除版本号