wp_is_auto_update_enabled_for_type

函数
wp_is_auto_update_enabled_for_type ( $type )
参数
  • (string) $type The type of update being checked: 'theme' or 'plugin'.
    Required:
返回值
  • (bool) True if auto-updates are enabled for `$type`, false otherwise.
定义位置
相关方法
wp_is_auto_update_forced_for_itemwp_get_auto_update_message_wp_batch_update_comment_typewpmu_update_blogs_datewp_theme_auto_update_setting_template
引入
5.5.0
弃用
-

wp_is_auto_update_enabled_for_type: 这个函数用于检查WordPress中特定类型的项目是否启用了自动更新。它接收一个类型参数(例如,主题、插件、核心),如果该类型的自动更新被启用,则返回true。

检查自动更新是否被启用。

function wp_is_auto_update_enabled_for_type( $type ) {
	if ( ! class_exists( 'WP_Automatic_Updater' ) ) {
		require_once ABSPATH . 'wp-admin/includes/class-wp-automatic-updater.php';
	}

	$updater = new WP_Automatic_Updater();
	$enabled = ! $updater->is_disabled();

	switch ( $type ) {
		case 'plugin':
			/**
			 * Filters whether plugins auto-update is enabled.
			 *
			 * @since 5.5.0
			 *
			 * @param bool $enabled True if plugins auto-update is enabled, false otherwise.
			 */
			return apply_filters( 'plugins_auto_update_enabled', $enabled );
		case 'theme':
			/**
			 * Filters whether themes auto-update is enabled.
			 *
			 * @since 5.5.0
			 *
			 * @param bool $enabled True if themes auto-update is enabled, false otherwise.
			 */
			return apply_filters( 'themes_auto_update_enabled', $enabled );
	}

	return false;
}

常见问题

FAQs
查看更多 >