how to display sidebar?
-
Hi every body, i’ve got page ‘theme-sidebars’:
<?php add_action( 'widgets_init', 'deco_sidebar' ); function deco_sidebar() { register_sidebar( array( 'id' => 'deco_sidebar', 'name' => __( 'Правый сайдбар' ), 'description' => __( 'Виджет для правой колонки на сайте' ), 'before_widget' => '<div class="popular-small cf" style="font-size:16px;">', 'after_widget' => '</div>', 'before_title' => '<a href="#">', 'after_title' => '</a>' ) ); } dynamic_sidebar( 'deco_sidebar' );how to display this sidebar in one of my page, pls explain somebody)
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘how to display sidebar?’ is closed to new replies.