50

How to Change WooCommerce Related Products Section Title

Powered by WPCodeBox

This WooCommerce code snippet allows you to easily change the “Related Products” title to custom text like “Products you may also like”, enhancing your product page customization.


<?php

add_filter('woocommerce_product_related_products_heading', function () {
    
    return 'Products you may also like';
    
});

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.