Categories
Server

WP 自定义JS

架构 需要找到wordpress目录下的如下路径(根据当前激活的主题来定) /** * 加载自定义js */ function my_js() { wp_enqueue_script('add_background', '/wp-content/user_uploads/my_js.js', array(), '1.0', true); } add_action('wp_footer', 'my_js'); 常用的一些文件: index.php /usr/share/nginx/html/wordpress/wp-content/themes/twentytwenty/template-parts/content.php […]