Definition:
function wp_admin_bar_updates_menu( $wp_admin_bar ) {}
Provide an update link if theme/plugin/core updates are available.
Parameters
- $wp_admin_bar
Source code
function wp_admin_bar_updates_menu( $wp_admin_bar ) {
$update_data = wp_get_update_data();
if ( !$update_data['counts']['total'] )
return;
$title = '<span class="ab-icon"></span><span class="ab-label">' . number_format_i18n( $update_data['counts']['total'] ) . '</span>';
$wp_admin_bar->add_menu( array(
'id' => 'updates',
'title' => $title,
'href' => network_admin_url( 'update-core.php' ),
'meta' => array(
'title' => $update_data['title'],
),
) );
}
10595

February 24, 2011 


No comments yet... Be the first to leave a reply!