mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
8 lines
268 B
Text
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' );
|