Code-Snippets-Functions/Execute a function on a child site/WooCommerce/change-shop-page-title.txt

8 lines
268 B
Text

function wc_custom_shop_archive_title( $title ) {
if ( is_shop() && isset( $title['title'] ) ) {
$title['title'] = get_the_title( wc_get_page_id( 'Shop' ) );
}
return $title;
}
add_filter( 'document_title_parts', 'wc_custom_shop_archive_title' );