php 用于检查Gutenberg是否处于活动状态的功能。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 用于检查Gutenberg是否处于活动状态的功能。相关的知识,希望对你有一定的参考价值。

	/**
	 * Check if Gutenberg is active.
	 * Must be used not earlier than plugins_loaded action fired.
	 *
	 * @return bool
	 */
	private function is_gutenberg_active() {
		$gutenberg    = false;
		$block_editor = false;

		if ( has_filter( 'replace_editor', 'gutenberg_init' ) ) {
			// Gutenberg is installed and activated.
			$gutenberg = true;
		}

		if ( version_compare( $GLOBALS['wp_version'], '5.0-beta', '>' ) ) {
			// Block editor.
			$block_editor = true;
		}

		if ( ! $gutenberg && ! $block_editor ) {
			return false;
		}

		include_once ABSPATH . 'wp-admin/includes/plugin.php';

		if ( ! is_plugin_active( 'classic-editor/classic-editor.php' ) ) {
			return true;
		}

		$use_block_editor = ( get_option( 'classic-editor-replace' ) === 'no-replace' );

		return $use_block_editor;
	}

以上是关于php 用于检查Gutenberg是否处于活动状态的功能。的主要内容,如果未能解决你的问题,请参考以下文章

php 检查插件是否在主题上处于活动状态

检查 sessionid 已知的 PHP 会话是不是处于活动状态

检查蓝牙是不是在 Android 上处于活动状态?

检查 PIP 是不是处于活动状态

检查 WooCommerce 是不是处于活动状态以及使用的版本

有没有办法检查一个对象的所有孩子是不是都处于活动状态?