maybe_disable_link_manager()WP 3.5.0

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

No Hooks.

Return

null. Nothing (null).

Usage

maybe_disable_link_manager();

Notes

  • Global. Int. $wp_current_db_version The old (current) database version.
  • Global. wpdb. $wpdb WordPress database abstraction object.

Changelog

Since 3.5.0 Introduced.

maybe_disable_link_manager() code WP 6.5.2

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 );
	}
}