最后,我得到了我的解决方案,我不知道这是不是最好的方法,但它解决了我的问题。
我所做的是检查函数。php文件并找到以下代码
function themename_scripts() {
wp_enqueue_style( \'themename-style\', get_stylesheet_uri(), array(), _S_VERSION );
wp_style_add_data( \'themename-style\', \'rtl\', \'replace\' );
wp_enqueue_script( \'themename-navigation\', get_template_directory_uri() . \'/js/navigation.js\', array(), _S_VERSION, true );
if ( is_singular() && comments_open() && get_option( \'thread_comments\' ) ) {
wp_enqueue_script( \'comment-reply\' );
}
}
add_action( \'wp_enqueue_scripts\', \'themename_scripts\' );
然后我删除
_S_VERSION
从下面的代码和添加的时间()
wp_enqueue_style( \'themename-style\', get_stylesheet_uri(), array(), time() );
我得到了我的输出,它显示为
<link rel=\'stylesheet\' id=\'main-styles-css\' href=\'http://test.com/wp-content/themes/themename/style.css?ver=1597849143\' media=\'\' />