wp_no_robots

Definition:
function wp_no_robots() {}

Display a noindex meta tag.
Outputs a noindex meta tag that tells web robots not to index the page content. Typical usage is as a wp_head callback. add_action( ‘wp_head’, ‘wp_no_robots’ );

Source code

function wp_no_robots() {

	echo "<meta name='robots' content='noindex,nofollow' />\n";

}

17735

wp_media_insert_url_form

Parameters

  • $default_view

Source code

add_filter('media_upload_library', 'media_upload_library');

17705

wp_is_large_network

The default criteria for a large network is either more than 10,000 users or more than 10,000 sites. Plugins can alter this criteria using the ‘wp_is_large_network’ filter.

Parameters

  • string $using: ‘sites or ‘users’. Default is ‘sites’.

Return values

returns:True if the network meets the criteria for large. False otherwise.

Source code

?>

17650

wp_get_update_data

Definition:
function wp_get_update_data() {}

Source code

function wp_get_update_data() {

	$counts = array( 'plugins' => 0, 'themes' => 0, 'wordpress' => 0 );



	if ( current_user_can( 'update_plugins' ) ) {

		$update_plugins = get_site_transient( 'update_plugins' );

		if ( ! empty( $update_plugins->response ) )

			$counts['plugins'] = count( $update_plugins->response );

	}



	if ( current_user_can( 'update_themes' ) ) {

		$update_themes = get_site_transient( 'update_themes' );

		if ( ! empty( $update_themes->response ) )

			$counts['themes'] = count( $update_themes->response );

	}



	if ( function_exists( 'get_core_updates' ) && current_user_can( 'update_core' ) ) {

		$update_wordpress = get_core_updates( array('dismissed' => false) );

		if ( ! empty( $update_wordpress ) && ! in_array( $update_wordpress[0]->response, array('development', 'latest') ) && current_user_can('update_core') )

			$counts['wordpress'] = 1;

	}



	$counts['total'] = $counts['plugins'] + $counts['themes'] + $counts['wordpress'];

	$update_title = array();

	if ( $counts['wordpress'] )

		$update_title[] = sprintf(__('%d WordPress Update'), $counts['wordpress']);

	if ( $counts['plugins'] )

		$update_title[] = sprintf(_n('%d Plugin Update', '%d Plugin Updates', $counts['plugins']), $counts['plugins']);

	if ( $counts['themes'] )

		$update_title[] = sprintf(_n('%d Theme Update', '%d Theme Updates', $counts['themes']), $counts['themes']);



	$update_title = ! empty( $update_title ) ? esc_attr( implode( ', ', $update_title ) ) : '';



	return array( 'counts' => $counts, 'title' => $update_title );

}

17620