php 不需要时删除样式 - Formstack WordPress插件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 不需要时删除样式 - Formstack WordPress插件相关的知识,希望对你有一定的参考价值。

//* Remove Formstack style when not needed
add_action( 'wp_enqueue_scripts', 'jennywren_formstack_conditional_styles', 11 );
function jennywren_formstack_conditional_styles() {
	global $post;
	if ( ! has_shortcode( $post->post_content, 'formstack' ) ) {
		wp_dequeue_style( 'formstack-css' );
	}
}

以上是关于php 不需要时删除样式 - Formstack WordPress插件的主要内容,如果未能解决你的问题,请参考以下文章