在 wordpress 中使用 Redux 框架 functions.php

Use Redux Framework in wordpress functions.php

我想在 wordpress functions.php 中使用一些 redux 框架选项,但我不工作。

我的functions.php:

<?php
global $redux_options;

if ($redux_options['remove_par'] == '1' ) {
    function vc_remove_wp_ver_css_js( $src ) {
        if ( strpos( $src, 'ver=' ) )
            $src = remove_query_arg( 'ver', $src );
        return $src;
    }
    add_filter( 'style_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
    add_filter( 'script_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
}    
?>

提前谢谢你...

解决方法如下:将 global var 放入函数中。

function vc_remove_wp_ver_css_js( $src ) {
    global $redux_options;

    if ( $redux_options['remove_par'] !== '1' ) {
        return;
    }

    if ( strpos( $src, 'ver=' ) )
        $src = remove_query_arg( 'ver', $src );
    return $src;
}
add_filter( 'style_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
add_filter( 'script_loader_src', 'vc_remove_wp_ver_css_js', 9999 );