apply_filters( ‘dynamic_sidebar_has_widgets’, bool $did_one, int|string $index )

In this article

Filters whether a sidebar has widgets.

Description

Note: The filter is also evaluated for empty sidebars, and on both the front end and back end, including the Inactive Widgets sidebar on the Widgets screen.

Parameters

$did_onebool
Whether at least one widget was rendered in the sidebar.
Default false.
$indexint|string
Index, name, or ID of the dynamic sidebar.

Source

return apply_filters( 'dynamic_sidebar_has_widgets', $did_one, $index );

Changelog

VersionDescription
3.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.