你应该在wp_enqueue_scripts
事件将函数放入functions.php
并立即运行它,将使其在所有页面上运行,包括管理区域
下面是devhub的一个示例:
/**
* Proper way to enqueue scripts and styles.
*/
function wpdocs_theme_name_scripts() {
wp_enqueue_style( \'style-name\', get_stylesheet_uri() );
wp_enqueue_script( \'script-name\', get_template_directory_uri() . \'/js/example.js\', array(), \'1.0.0\', true );
}
add_action( \'wp_enqueue_scripts\', \'wpdocs_theme_name_scripts\' );
此挂钩/操作/事件在前端触发。如果要向后端添加样式或脚本,请使用
admin_enqueue_scripts
改为事件