wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



install_blog_defaults › WordPress Function

Seit
Veraltet
install_blog_defaults ( $blog_id, $user_id )
Parameter: (2)
  • (int) $blog_id Ignored in this function.
    Erforderlich: Ja
  • (int) $user_id
    Erforderlich: Ja
Definiert in:
Codex:
Changelog:
  • MU

Set blog defaults.

This function creates a row in the wp_blogs table.


Quellcode

function install_blog_defaults( $blog_id, $user_id ) {
	global $wpdb;

	_deprecated_function( __FUNCTION__, 'MU' );

	require_once ABSPATH . 'wp-admin/includes/upgrade.php';

	$suppress = $wpdb->suppress_errors();

	wp_install_defaults( $user_id );

	$wpdb->suppress_errors( $suppress );
}