php 将Plyr脚本添加到WP Head&Footer

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将Plyr脚本添加到WP Head&Footer相关的知识,希望对你有一定的参考价值。


<?php // Add Plyr scripts to WP Head & Footer
//Plyr 3.0.10 https://github.com/sampotts/plyr
function plyr_header_script() { ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/plyr/plyr.css">
<?php }
add_action( 'wp_head', 'plyr_header_script' );

function plyr_footer_script() { ?>
<script src="<?php bloginfo('stylesheet_directory'); ?>/plyr/plyr.js"></script>
<script>const players = Array.from(document.querySelectorAll('.wpb_video_wrapper')).map(player => new Plyr(player));</script>
<script>const players2 = Array.from(document.querySelectorAll('audio')).map(player2 => new Plyr(player2));</script>

<?php }
add_action( 'wp_footer', 'plyr_footer_script' ); ?>

以上是关于php 将Plyr脚本添加到WP Head&Footer的主要内容,如果未能解决你的问题,请参考以下文章

如何将 DOM 元素脚本添加到 head 部分?

引用脚本js文件与css文件

PHP:wp_nav_menu 添加图标

php 将js添加到wp

PHP 将WP短代码添加到模板

将上传器添加到php脚本[重复]