php 的functions.php

Posted

tags:

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

<?php

add_filter( 'option_active_plugins', __NAMESPACE__ . '\disable_acf_on_frontend' );
/**
 * Disable ACF Pro on website frontend.
 *
 * Provides a performance boost if ACF frontend functions aren't being used.
 *
 * @since 1.0.0
 * @link https://www.billerickson.net/code/disable-acf-frontend/
 *
 */
function disable_acf_on_frontend( $plugins ) {
	if ( is_admin() ) {
		return $plugins;
	}
	foreach ( $plugins as $index => $plugin ) {
		if ( 'advanced-custom-fields-pro/acf.php' == $plugin ) {
			unset( $plugins[ $index ] );
		}
	}

	return $plugins;
}

以上是关于php 的functions.php的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress的-的functions.php

php 的functions.php

php 的functions.php

php 的functions.phpを分割

php 的functions.php

php 额外的functions.php