Hướng dẫn tạo bộ tìm kiếm cho site Bất động sản WordPress P.3
Hướng dẩn thêm câu lệnh query để search Thêm đoạn này vào add_filter( ‘pre_get_posts’,’bogtintonghop_custom_search_filter’); function bogtintonghop_custom_search_filter( $query ) { if( $query->is_search && !is_admin() ) // { if( isset($_GET[‘s’] ) ) { $query->set( ‘post_type’, array( ‘nha_dat’ ) );// ô search text. } if( $query->is_main_query() ) { } } return $query; } Thêm […]
Hướng dẫn tạo bộ tìm kiếm cho site Bất động sản WordPress P.3 Đọc thêm »