Đây là Code đăng ký widget back end và gọi widget ra ngoài front end giúp anh chị copy nhanh chóng vào dự án theme
Các từ khóa tim kiếm:
-Đăng ký widget back end
-Gọi widget ra ngoài front end
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php function tt_register_with_admin(){ register_sidebar( array( 'name' => __( 'Home top', du_lich_text_theme ), 'id' => 'du_lich_home_top', 'description' => __( 'Home top', du_lich_text_theme ), 'before_widget' => '<div id="%1$s" class="sb-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'tt_register_with_admin' ); |
1 2 3 4 5 |
<?php if ( is_active_sidebar( 'du_lich_side_bar' ) ) : dynamic_sidebar('du_lich_side_bar' ); endif; ?> |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress