我基本上是想让我的 js 和 css 文件动态化。我已经尝试了几种不同的方法来做到这一点,但它似乎对我不起作用。任何帮助将不胜感激!
函数.php
function fnp_add_js() {
//I've tried fnp_jquery.js.php fnp_jquery.php and fnp_jquery.js
wp_register_script( 'fnp_jquery', plugins_url( 'fnp_jquery.js.php', __FILE__ ));
wp_enqueue_script('fnp_jquery');
}
基础.php
add_action('wp_enqueue_scripts', 'fnp_add_js');
jquery.js(我试过 fnp_jquery.js.php fnp_jquery.php 和 fnp_jquery.js)
<?php
header('Content-type: text/javascript');
//I've also tried surrounding $(document).ready(function() {} with echo '';
?>
$(document).ready(function() {
//Javascript here
});