maybe_disable_link_manager

函数


maybe_disable_link_manager ( No parameters )
定义位置
  • wp-admin/includes/upgrade.php
    , line 3453
引入
3.5.0
弃用

Disables the Link Manager on upgrade if, at the time of upgrade, no links exist in the DB.

function maybe_disable_link_manager() {
	global $wp_current_db_version, $wpdb;

	if ( $wp_current_db_version >= 22006 && get_option( 'link_manager_enabled' ) && ! $wpdb->get_var( "SELECT link_id FROM $wpdb->links LIMIT 1" ) ) {
		update_option( 'link_manager_enabled', 0 );
	}
}