web-dev-qa-db-ja.com

すべてのサイドバーの名前を一覧表示しますか?

私はそのようなすべてのサイドバーをリストしています:

global $wp_registered_sidebars;

echo '<pre>';
print_r($wp_registered_sidebars); 
echo '</pre>'

だから私はのようなものを得ている:

Array
(
    [sidebar-1] => Array
        (
            [name] => Sidebar #1
            [id] => sidebar-1
            [description] => Sidebar number 1
            [before_widget] => 
            [after_widget] => 
            [before_title] => 
            [after_title] =>
        )

 (...)

)

しかし、私はそれらを選択リストとして表示したいのですが。

<select>
  <option value ="SIDEBAR-ID">SIDEBAR-NAME/option>
  <option value ="SIDEBAR-ID">SIDEBAR-NAME/option>
(...)
</select>

Wordpress Codexはまったく役に立ちません。

ありがとうございました!

13
Wordpressor

グローバルをループします。

<select>
<?php foreach ( $GLOBALS['wp_registered_sidebars'] as $sidebar ) { ?>
     <option value="<?php echo ucwords( $sidebar['id'] ); ?>">
              <?php echo ucwords( $sidebar['name'] ); ?>
     </option>
<?php } ?>
</select>

注意:
ucwords()関数は、あなたが要求したとおりに表示するためだけにあります。あなたが本当にそれを望んでいるかどうかわからない。


グローバル配列とオブジェクトにアクセスする方法:

とにかく: あなたのQは主に配列にアクセスする方法についてです。私はそれについてQを書きました(さらなる説明のために)。 こちらを見てください

21
kaiser

あなたのためにリストを作成するための関数を書きませんか?

function sidebar_selectbox( $name = '', $current_value = false ) {
    global $wp_registered_sidebars;

    if ( empty( $wp_registered_sidebars ) )
        return;

    $name = empty( $name ) ? false : ' name="' . esc_attr( $name ) . '"';
    $current = $current_value ? esc_attr( $current_value ) : false;     
    $selected = '';
    ?>
    <select<?php echo $name; ?>>
    <?php foreach ( $wp_registered_sidebars as $sidebar ) : ?>
        <?php 
        if ( $current ) 
            $selected = selected( $current === $sidebar['id'], true, false ); ?>    
        <option value="<?php echo $sidebar['id']; ?>"<?php echo $selected; ?>><?php echo $sidebar['name']; ?></option>
    <?php endforeach; ?>
    </select>
    <?php
}

サイドバー付きの選択リストを作成する必要がある場合は、それを呼び出してください。オプションで名前を渡すこともできます。

sidebar_selectbox();

または

sidebar_selectbox( 'theme_sidebars' );

さらに、オプションとして、現在選択されている値を渡します...

sidebar_selectbox( 'theme_sidebars', $var_holding_current );

それが役立つことを願っています。

6
t31os