如何通过插件安装方法将推特引导添加并使用到我的wp admin后端?
我计划创建多个自定义插件,我只想添加引导作为一种全局样式,而不是每个插件都使用它
这是我的代码,它似乎不起作用。
<?php
/*
* Plugin Name: bootstrap
* Plugin URI: http://#/
* Description: add boostrap
* Author: some guy
* Author URI: http://#/
* Version: 0.1.0
*/
function theme_name_scripts() {
wp_enqueue_style( \'style-name\', get_stylesheet_uri() . \'/custom/css/bootstrap.css\');
}
add_action( \'wp_enqueue_scripts\', \'theme_name_scripts\' );
?>