php 在wordpress中加载css
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在wordpress中加载css相关的知识,希望对你有一定的参考价值。
function add_open_sans() {
wp_enqueue_style( 'open-sans', 'https://fonts.googleapis.com/css?family=Open+Sans', false );
}
function add_merriweather() {
wp_enqueue_style( 'merriweather', 'https://fonts.googleapis.com/css?family=Merriweather:400,700', false );
}
//add_action( '[hooks_name]', '[function_name]' );
add_action( 'wp_enqueue_scripts', 'add_open_sans' );
add_action( 'wp_enqueue_scripts', 'add_merriweather');
以上是关于php 在wordpress中加载css的主要内容,如果未能解决你的问题,请参考以下文章
php 在PHP / Wordpress中加载主题元素
PHP 在WordPress中加载JavaScript库
如何在functions.php(wordpress)中加载引导脚本和样式?
PHP jQuery在WordPress中加载最新版本
php 如何在WordPress中加载Font Awesome 5
PHP 在Wordpress生成的页面中加载Javascript库