如果您有自己的主题或子主题,则可以在脚本标记中将其添加到模板中。我建议您在调用<?php wp_footer(); ?>
<script>
jQuery( document ).ready( function() {
jQuery( document ).on( \'wp-custom-header-video-loaded\', function() {
jQuery("#wp-custom-header-video").attr(\'autoplay\',false);
});
});
</script>
注意我已经改变了
$
到
jQuery
因为WordPress的jQuery默认以无冲突模式安装,并且不定义
$
.
或者,您可以将其作为插件或主题的内联脚本排队
function wp_custom_header_video_autoplay_false() {
wp_add_inline_script( \'jquery\', "<script>
jQuery( document ).ready( function() {
jQuery( document ).on( \'wp-custom-header-video-loaded\', function() {
jQuery("#wp-custom-header-video").attr(\'autoplay\',false);
});
});
</script>
");
};
add_action( \'wp_enqueue_scripts\', \'wp_custom_header_video_autoplay_false\' );