答案是肯定的,它确实会被缓存。我认为当主题改变时,过渡应该被清除,但这在我当地的环境中不起作用,我必须改天再深入研究。
从函数wp\\u get\\u global\\u样式表中:
// Return cached value if it can be used and exists.
// It\'s cached by theme to make sure that theme switching clears the cache.
$can_use_cached = (
( empty( $types ) ) &&
( ! defined( \'WP_DEBUG\' ) || ! WP_DEBUG ) &&
( ! defined( \'SCRIPT_DEBUG\' ) || ! SCRIPT_DEBUG ) &&
( ! defined( \'REST_REQUEST\' ) || ! REST_REQUEST ) &&
! is_admin()
);
正在添加
define( \'SCRIPT_DEBUG\', true );
到我的本地wp配置。php文件目前正在运行。。。