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
297 B
Text
8 lines
297 B
Text
add_filter( 'the_title', 'wc_capitalize_single_prod_title', 9999, 2 );
|
|
|
|
function wc_capitalize_single_prod_title( $post_title, $post_id ) {
|
|
if ( ! is_admin() && 'product' === get_post_type( $post_id ) ) {
|
|
$post_title = ucwords( strtolower( $post_title ) );
|
|
}
|
|
return $post_title;
|
|
}
|