wp_dashboard [ WordPress-Funktionen ]
wp_dashboard ( Keine Parameter )
| Definiert in: |
|
| Codex |
Ähnliche Funktionen: wp_dashboard_empty, wp_dashboard_quota, wp_dashboard_setup, wp_dashboard_plugins, wp_dashboard_primary
Displays the dashboard.
Quellcode
function wp_dashboard() {
$screen = get_current_screen();
$class = 'columns-' . get_current_screen()->get_columns();
?>
<div id="dashboard-widgets" class="metabox-holder <?php echo $class; ?>">
<div id='postbox-container-1' class='postbox-container'>
<?php do_meta_boxes( $screen->id, 'normal', '' ); ?>
</div>
<div id='postbox-container-2' class='postbox-container'>
<?php do_meta_boxes( $screen->id, 'side', '' ); ?>
</div>
<div id='postbox-container-3' class='postbox-container'>
<?php do_meta_boxes( $screen->id, 'column3', '' ); ?>
</div>
<div id='postbox-container-4' class='postbox-container'>
<?php do_meta_boxes( $screen->id, 'column4', '' ); ?>
</div>
</div>
<?php
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
}Beispiele [ wp-snippets.com ]
Top Google Suchergebnisse
- wp_dashboard (WordPress Function) - WPSeek.com
May 11, 2013 ... Displays the dashboard. WordPress lookup for wp_dashboard, a WordPress Function.
wpseek.com - wp_dashboard()
PHPXref.com - WordPress 3.0.1 - Function Reference: wp_dashboard()
phpxref.com - PHPXRef 0.7 : WordPress : Function Reference: wp_dashboard()
Function and Method Cross Reference. wp_dashboard(). Defined at: /wp-admin/ includes/dashboard.php -> line 192. Referenced 2 times: /wp-admin/index.php ...
phpxref.ftwr.co.uk - Replacing the Wordpress Dashboard with your own plugin page ...
Apr 23, 2011 ... On WordPress 3.1.1, the /wp-admin/index.php provides no support for overriding the wp_dashboard() function. After digging around for an hour ...
projectivemotion.com
