1 2 3 4 5 6 |
function custom_remove_product_tabs( $tabs ) { unset( $tabs['reviews'] ); return $tabs; } add_filter( 'woocommerce_product_tabs', 'custom_remove_product_tabs',98 ); |
1 2 3 4 5 6 |
add_filter( 'woocommerce_product_tabs', 'custom_rename_tabs', 98 ); function custom_rename_tabs( $tabs ) { $tabs['description']['title'] = __( 'Thông tin thêm' ); return $tabs; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
add_filter( 'woocommerce_product_tabs', 'add_new_product_tab' ); function add_new_product_tab( $tabs ) { $tabs['huong_dan_thanh_toan'] = array( 'title' => __( 'Hướng dẫn thanh toán', 'custom_theme' ), 'priority' => 50, 'callback' => 'tab_huong_dan_thanh_toan' ); $tabs['chinh_sach_dieu_khoan'] = array( 'title' => __( 'Chính sách điều khoản', 'custom_theme' ), 'priority' => 50, 'callback' => 'tab_chinh_sach_dieu_khoan' ); return $tabs; } function tab_huong_dan_thanh_toan() { $page=get_post(32); echo $page->post_content; } function tab_chinh_sach_dieu_khoan(){ $page=get_post(34); echo $page->post_content; } |
1 2 3 4 5 6 7 |
add_filter( 'woocommerce_product_tabs', 'custom_reorder_tabs', 98 ); function custom_reorder_tabs( $tabs ) { $tabs['description']['priority'] = 10; $tabs['huong_dan_thanh_toan']['priority'] = 11; $tabs['chinh_sach_dieu_khoan']['priority'] = 12; return $tabs; } |
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