2. sciagnac, rozpakowac i wkopiowac rozpakowany folder do wp-content/plugins
3. w pliku sidebar.php naszej skorki (theme) tworzymy blok podobny do:
<?php if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<ul class="xoxo">
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
</ul>
</div>
<div id="secondary" class="widget-area" role="complementary">
<ul class="xoxo">
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
</ul>
</div>
4. w functions.php dodajemy (lub tylko modyfikujemy) funkcje inicjujaca widgety w danym bloku:
function myTheme_widgets_init() {
register_sidebar( array(
'name' => __( 'Secondary Widget Area', 'glg' ),
'id' => 'secondary-widget-area',
'description' => __( 'The secondary widget area', 'myTheme' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}
register_sidebar( array(
'name' => __( 'Secondary Widget Area', 'glg' ),
'id' => 'secondary-widget-area',
'description' => __( 'The secondary widget area', 'myTheme' ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}
po czym ja dodajemy do wykonywanch akcji, rowniez w pliku functions.php:
add_action( 'widgets_init', 'myTheme_widgets_init' );
5. teraz pozostaje skonfigurowanie widgetu w panelu administracyjnym w Zakladce Appearance -> Widgets.
Oczywiscie kod HTML i CSS mozna sobie wpisac jaki sie chce.
Brak komentarzy:
Prześlij komentarz