Những điều tuyệt vời đang ở phía trước
Có điều gì đó lớn lao đang được ấp ủ! Cửa hàng của chúng tôi đang được xây dựng và sẽ sớm ra mắt!
// Xoá /san-pham/ khỏi WooCommerce Product Permalink function custom_remove_cpt_slug( $post_link, $post ) { if ( 'product' === $post->post_type && 'publish' === $post->post_status ) { $post_link = str_replace( '/san-pham/', '/', $post_link ); } return $post_link; } add_filter( 'post_type_link', 'custom_remove_cpt_slug', 10, 2 ); function custom_add_rewrite_rules( $flash = false ) { global $wp_rewrite; $wp_rewrite->flush_rules( $flash ); } add_action( 'init', 'custom_add_rewrite_rules' ); function custom_parse_request( $query ) { if ( ! $query->is_main_query() || 2 !== count( $query->query ) || ! isset( $query->query['page'] ) ) { return; } if ( ! empty( $query->query['name'] ) ) { $query->set( 'post_type', array( 'post', 'product', 'page' ) ); } } add_action( 'pre_get_posts', 'custom_parse_request' );
Bỏ qua nội dungCó điều gì đó lớn lao đang được ấp ủ! Cửa hàng của chúng tôi đang được xây dựng và sẽ sớm ra mắt!