2

カスタム投稿タイプの各投稿にサイドバーを追加するようにワードプレスを取得しようとしています。そのため、ウィジェット エリアに移動すると、ポートフォリオと名付けたカスタム投稿タイプの投稿と同じ数のサイドバーが必要になります。

これは私が使用しているコードですが、タイトルのないサイドバーが 1 つしか表示されません。

更新: コードにグローバル $posts を追加したところ、サイドバーが表示されるようになり、the_title() を get_the_title() に変更しました。今、それは働いています。以下の完全なコード。誰かがより良い解決策を持っている場合は、私に知らせてください。

function the_slug() {
    $post_data = get_post($post->ID, ARRAY_A);
    $slug = $post_data['post_name'];
    return $slug; 
}

add_action( 'init', 'portfolios_sidebars' );
/**
 * Create widgetized sidebars for each portfolio
 *
 * This function is attached to the 'init' action hook.
 */

function portfolios_sidebars() {
    $args = array( 'post_type' => 'portfolios', 'numberposts' => -1, 'post_status' => 'publish'); 
    $portfolios = get_posts( $args );
    global $post;
    if ($portfolios) {
        foreach ( $portfolios as $post ) {
            setup_postdata($post);
            $portfoliotitle = get_the_title();
            $portfolioslug = the_slug();
            register_sidebar( array(
                'name' => $portfoliotitle,
                'id' => $portfolioslug . '-sidebar',
                'description' => 'This is the ' . $portfoliotitle . ' widgetized area',
                'before_widget' => '<aside id="%1$s" class="widget %2$s" role="complementary">',
                'after_widget' => '</aside>',
                'before_title' => '<h4 class="widget-title">',
                'after_title' => '</h4>',
            ) );
        }
        wp_reset_postdata();
    }
}
4

1 に答える 1

0

不要な関数呼び出しを削除するだけです。

add_action( 'init', 'portfolios_sidebars' );
/**
 * Create widgetized sidebars for each portfolio
 *
 * This function is attached to the 'init' action hook.
 */

function portfolios_sidebars() {
    $args = array( 'post_type' => 'portfolios', 'numberposts' => -1, 'post_status' => 'publish'); 
    $portfolios = get_posts( $args );
    if ($portfolios) {
        foreach ( $portfolios as $portfolio ) {
            $portfoliotitle = $portfolio->post_title;
            $portfolioslug = $portfolio->post_name;
            register_sidebar( array(
                'name' => $portfoliotitle,
                'id' => $portfolioslug . '-sidebar',
                'description' => 'This is the ' . $portfoliotitle . ' widgetized area',
                'before_widget' => '<aside id="%1$s" class="widget %2$s" role="complementary">',
                'after_widget' => '</aside>',
                'before_title' => '<h4 class="widget-title">',
                'after_title' => '</h4>',
            ) );
        }
    }
}
于 2012-12-10T22:56:33.713 に答える