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



wp_dashboard_on_this_day_setup › WordPress Function

Seit7.1.0
Veraltetn/v
wp_dashboard_on_this_day_setup ( Keine Parameter )
Definiert in:
Codex:

Registers the On This Day dashboard widget.

Designed to be the single entry point called from the dashboard setup routine. The widget is always registered so that it remains available in Screen Options and keeps its user-customized position. When there are no matching posts, a marker class is added to the postbox so the widget can be hidden with CSS.


Quellcode

function wp_dashboard_on_this_day_setup() {
	add_filter( 'postbox_classes_dashboard_wp_dashboard_on_this_day', 'wp_dashboard_on_this_day_postbox_classes' );

	wp_add_dashboard_widget(
		'wp_dashboard_on_this_day',
		__( 'On This Day' ),
		'wp_dashboard_on_this_day'
	);
}