Home › Forums › Pro Support › Change Title › Reply To: Change Title
November 16, 2017 at 6:18 pm
#2967
Keymaster
For example, name the page: Financing Options
Be sure to change the permalink to financing-options as well.
Then add a function to change the title on the single page:
add_filter( 'the_title', 'tu_alter_title' );
function tu_alter_title( $title ) {
if ( is_page( 'financing-options' ) ) {
return 'Financing';
}
return $title;
}