wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



maybe_disable_link_manager › WordPress Function

Od3.5.0
Przestarzałyn/a
maybe_disable_link_manager ( Brak parametrów )
Zdefiniowane na:
Codex:

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



Źródło

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