php 排队样式和脚本父母子主题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 排队样式和脚本父母子主题相关的知识,希望对你有一定的参考价值。
https://developer.wordpress.org/reference/functions/wp_enqueue_style/
https://wordpress.stackexchange.com/questions/192773/override-get-template-directory-in-child-theme
<?php
// Our custom styles and scripts from our child theme.
function add_theme_scripts() {
wp_enqueue_style( 'google_fonts', 'https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700|Montserrat', array(), '1.1', 'all');
//wp_enqueue_script( 'myscript', get_template_directory_uri() . '/js/myscript.js', array ( 'jquery' ), 1.1, true);
wp_enqueue_style( 'slickcss', get_theme_file_uri() .'/slick/slick.css' );
wp_enqueue_style( 'slicktheme', get_theme_file_uri() .'/slick/slick-theme.css' );
wp_enqueue_script( 'slickjs', get_theme_file_uri() . '/slick/slick.min.js');
}
add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );
以上是关于php 排队样式和脚本父母子主题的主要内容,如果未能解决你的问题,请参考以下文章
php 基本WP排队脚本和样式
php 排队WordPress的脚本和样式
wordpress主题制作:引入外部CSS样式文件和JS脚本文件-要不要注册样式表(未完待续)
样式表将自动删除/取消注册 - WordPress
php 将wordpress主题的脚本和样式排入队列
php 父/子主题的Wordpess模板/样式表URL