php Cargar JS和CSS Wordpress

Posted

tags:

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

<?php

// Load the theme stylesheets
function theme_styles() {

	// Example of loading a jQuery slideshow plugin just on the homepage
	wp_register_style(
		'bootstrap-styles', // handle name
		get_template_directory_uri() . '/css/styles.min.css', // the URL of the stylesheet
		array(), // an array of dependent styles
		'1.2', // version number
		'screen' // CSS media type
	);

	wp_register_style(
		'main-styles', // handle name
		get_template_directory_uri() . '/css/main.css', // the URL of the stylesheet
		array(), // an array of dependent styles
		'1.2', // version number
		'screen' // CSS media type
	);

	wp_enqueue_style( 'bootstrap-styles' );
	wp_enqueue_style( 'main-styles' );

}

function theme_js() {

	wp_register_script('production',get_template_directory_uri() . '/js/production.js',array( 'jquery' ),'1',true );
	wp_register_script('main',get_template_directory_uri() . '/js/main.min.js',array( 'jquery' ),'1',true );
	wp_enqueue_script('miscript');
	wp_enqueue_script('main');

}

add_action( 'wp_head','theme_styles' );
add_action( 'wp_head','theme_js' );

以上是关于php Cargar JS和CSS Wordpress的主要内容,如果未能解决你的问题,请参考以下文章

PHP Php cargar imagen

php Cargar脚本propios

php cargar una diapositiva desde quid

php cargar un plugin cuando no esta cargado

CARGAR CONTENIDOfunction等CON AJAXJQUERY Y PHP

php Cargar un Template XLSX y cubrir los valores