is_active_sidebar

函数
is_active_sidebar ( $index )
参数
  • (string|int) $index Sidebar name, id or number to check.
    Required:
返回值
  • (bool) True if the sidebar has widgets, false otherwise.
定义位置
相关方法
is_active_widgetis_dynamic_sidebarregister_sidebarregister_sidebarsunregister_sidebar
引入
2.8.0
弃用
-

is_active_sidebar: 这个函数用来检查一个侧边栏是否有任何小工具被添加到它。它把侧边栏的ID作为一个参数,如果侧边栏有任何小工具,则返回true,否则返回false。

确定一个侧边栏是否包含小工具。

关于这个和类似主题函数的更多信息,请查看《主题开发者手册》中的{@link Conditional Tags}文章。

function is_active_sidebar( $index ) {
	$index             = ( is_int( $index ) ) ? "sidebar-$index" : sanitize_title( $index );
	$sidebars_widgets  = wp_get_sidebars_widgets();
	$is_active_sidebar = ! empty( $sidebars_widgets[ $index ] );

	/**
	 * Filters whether a dynamic sidebar is considered "active".
	 *
	 * @since 3.9.0
	 *
	 * @param bool       $is_active_sidebar Whether or not the sidebar should be considered "active".
	 *                                      In other words, whether the sidebar contains any widgets.
	 * @param int|string $index             Index, name, or ID of the dynamic sidebar.
	 */
	return apply_filters( 'is_active_sidebar', $is_active_sidebar, $index );
}

常见问题

FAQs
查看更多 >