widget_form_callback WordPress Filter Hook

The widget_form_callback hook is used to modify the output of a widget form. This hook is useful for adding extra fields to a widget form, or for changing the order in which fields are output.

apply_filters( 'widget_form_callback', array $instance, WP_Widget $widget ) #

Filters the widget instance’s settings before displaying the control form.


Description

Returning false effectively short-circuits display of the control form.


Top ↑

Parameters

$instance

(array)The current widget instance's settings.

$widget

(WP_Widget)The current widget instance.


Top ↑

Source

File: wp-includes/class-wp-widget.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.