php 将WP父类函数.php格式和脚本出列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将WP父类函数.php格式和脚本出列相关的知识,希望对你有一定的参考价值。

https://wordimpress.com/removing-styles-scripts-from-your-wordpress-parent-theme/

https://wordpress.stackexchange.com/questions/189985/how-to-properly-dequeue-scripts-and-styles-in-child-theme
<?php
// get the name of styles and scripts from the parent functions.php file

function powell_WI_dequeue_script() { // this goes into the child theme
	// Dequeue Styles
	wp_dequeue_style( 'flexslider' );
	wp_dequeue_style( 'owl.carousel' );
	wp_dequeue_style( 'shapely-fonts' );
	
	// Dequeue Scripts
	wp_dequeue_script( 'flexslider' );
	wp_dequeue_script( 'owl.carousel' );	
}
 
add_action( 'wp_print_scripts', 'powell_WI_dequeue_script', 100 );

以上是关于php 将WP父类函数.php格式和脚本出列的主要内容,如果未能解决你的问题,请参考以下文章

php 出列样式/脚本

php 将Plyr脚本添加到WP Head&Footer

php 基本WP排队脚本和样式

php 从样式和脚本中删除WP版本号

php WP-CLI脚本,用于将多站点实例从一个域移动到另一个域

WP 插入 post PHP 函数和自定义字段