Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter chrisslemke

    (@chrisslemke)

    Will anyone help?

    Plugin Author Kapil Chugh

    (@kapilchugh)

    Does Twenty Eleven theme support widgets in sidebar?

    Thread Starter chrisslemke

    (@chrisslemke)

    I don’t know, how can I find out?

    My goal is to have many pages in a definite order on my homepage, much like that guy:

    https://www.sternkaufen24.de/

    What can you suggest?

    Cheers from Germany

    Yes twenty eleven theme support widget. You also can create your sidebar widget yourself by using this code in functions.php

    register_sidebar( array(
    ‘name’ => __( ‘right sidebar’, ‘twentyeleven’ ),
    ‘id’ => ‘right_sidebar’,
    ‘description’ => __( ‘Appears when using the optional Front Page template with a page set as Static Front Page’, ‘twentytwelve’ ),
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );

    and put this code where you want to place your sidebar widget
    <?php dynamic_sidebar(‘right_sidebar’); ?>

    Sincerely
    Benzin Lahr

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Beginner Question: Where does the Widget for MPO need to go?’ is closed to new replies.