我在 php (WordPress) 页面中有一段代码:
function vp_contact_popup_add_to_header()
{
// Register the style like this for a plugin:
wp_register_style( 'videopopup', plugins_url( '/code/css/videopopup.css', __FILE__ ),
array(), '20120208', 'all' );
// Register the script like this for a plugin:
wp_register_script( 'videopopup', plugins_url( '/code/js/videopopup.js', __FILE__ ) );
wp_enqueue_style("videopopup");
wp_enqueue_script("videopopup");
}
我想要做的是在那里添加一些东西......就像一个额外的子句到那个片段的javascript部分,就像这样:
<script data-cfasync="false" src="/code/js/videopopup.js"></script>
所以我想以某种方式将data-cfasync="false"合并到 php 代码段中,但我不确定如何执行此操作。任何指导将不胜感激!