php Incluir Bootstrap en WordPress

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Incluir Bootstrap en WordPress相关的知识,希望对你有一定的参考价值。

// Incluir Bootstrap CSS
function bootstrap_css() {
	wp_enqueue_style( 'bootstrap_css', 
  					'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css', 
  					array(), 
  					'4.3.1'
  					); 
}
add_action( 'wp_enqueue_scripts', 'bootstrap_css');


// Incluir Bootstrap JS y dependencia popper
function bootstrap_js() {
	wp_enqueue_script( 'popper_js', 
  					'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.15.0/popper.min.js', 
  					array(), 
  					'1.15.0', 
  					true); 
	wp_enqueue_script( 'bootstrap_js', 
  					'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js', 
  					array('jquery','popper_js'), 
  					'4.3.1', 
  					true); 
}
add_action( 'wp_enqueue_scripts', 'bootstrap_js');

以上是关于php Incluir Bootstrap en WordPress的主要内容,如果未能解决你的问题,请参考以下文章

Bootstrap 4 日期选择器

Bootstrap 组件练习

求教bootstrap-calendar要怎么用

php 使用setTimeout()#jquery #bootstrap的Bootstrap Modal

在'header.php'或'function.php'文件中插入Bootstrap目录更好吗?

Laravel 5.3 PHP Artisan 不工作 PHP 警告:需要(bootstrap/../vendor/autoload.php)