0

WordPressテーマでウィジェットの位置を作成しました:

    <div class="row">
        <?php if ( dynamic_sidebar('Top')) ?>
    </div>

この位置でアクティブなウィジェットがない場合は、コード全体を非表示にします。

joomlaのようなワードプレスのコードはありますか

<?php if($this->countModules('Top')): ?>

4

1 に答える 1

0

is_active_sidebarサイドバーが空の場合、少なくともWPソースコードは関数がチェックするように見えます。

/**
* Whether a sidebar is in use.
*
* @since 2.8
*
* @param mixed $index Sidebar name, id or number to check.
* @return bool true if the sidebar is in use, false otherwise.
*/
function is_active_sidebar( $index ) {
   $index = ( is_int($index) ) ? "sidebar-$index" : sanitize_title($index);
   $sidebars_widgets = wp_get_sidebars_widgets();
   if ( !empty($sidebars_widgets[$index]) )
           return true;
   return false;
}
于 2012-12-30T11:04:00.190 に答える