wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_maybe_load_widgets › WordPress Function
Seit2.2.0
Veraltetn/v
› wp_maybe_load_widgets ( Keine Parameter )
Definiert in: |
|
Codex: |
Determines if Widgets library should be loaded.
Checks to make sure that the widgets library hasn't already been loaded. If it hasn't, then it will load the widgets library and run an action hook.Ähnliche Funktionen: wp_maybe_load_embeds, wp_ajax_dashboard_widgets, wp_map_sidebars_widgets, wp_add_dashboard_widget, wp_list_widgets
Quellcode
function wp_maybe_load_widgets() { /** * Filters whether to load the Widgets library. * * Returning a falsey value from the filter will effectively short-circuit * the Widgets library from loading. * * @since 2.8.0 * * @param bool $wp_maybe_load_widgets Whether to load the Widgets library. * Default true. */ if ( ! apply_filters( 'load_default_widgets', true ) ) { return; } require_once ABSPATH . WPINC . '/default-widgets.php'; add_action( '_admin_menu', 'wp_widgets_add_menu' ); }