Hướng dẫn đổi tên Shop Page trong WooCommerce

Theo mặc định, tiêu đề của trang Shop trong WooCommerce là Products | Tên trang web.

Để thay đổi tiêu đề mặc định này chỉ cần chèn đoạn code sau vào file functions.php của theme đang dùng:

/**
 * Change the Shop archive page title.
 * @param  string $title
 * @return string
 */
function wc_custom_shop_archive_title( $title ) {
    if ( is_shop() ) {
        return str_replace( __( 'Products', 'woocommerce' ), 'Tùy_chỉnh_tiêu_đề_trang_tại_đây', $title );
    }

    return $title;
}
add_filter( 'wp_title', 'wc_custom_shop_archive_title' );

Rất đơn giản. Chúc bạn thành công.


Hosting LiteSpeed SSD giá rẻ

admin has written 106 articles

Các bạn cần hỗ trợ hoặc kết bạn vui lòng liên hệ:
Skype: lephonghau37
Email: lephonghau@gmail.com
Zalo: 0908 077 994

Hosting Hawk Host

One thought on “Hướng dẫn đổi tên Shop Page trong WooCommerce

Leave a Reply

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>