返回介绍

is_active_sidebar()

发布于 2017-09-11 01:09:18 字数 2421 浏览 1191 评论 0 收藏 0

is_active_sidebar( string|int $index )

Whether a sidebar is in use.


description


参数

$index

(string|int) (Required) Sidebar name, id or number to check.


返回值

(bool) true if the sidebar is in use, false otherwise.


源代码

File: wp-includes/widgets.php

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 );
}

更新日志

Versiondescription
2.8.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: sanitize_title()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/widgets.php: wp_get_sidebars_widgets()
  • wp-includes/widgets.php: is_active_sidebar

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 1You must log in to vote on the helpfulness of this note Contributed by Codex

    Example
    Display different output depending on whether the sidebar is active or not.

    
    <?php if ( is_active_sidebar( 'left-sidebar' ) ) { ?>
    	<ul id="sidebar">
    		<?php dynamic_sidebar( 'left-sidebar' ); ?>
    	</ul>
    <?php } ?>
    
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文