我想你会想用wp_title
滤器将以下内容添加到functions.php
:
function wpse62415_filter_wp_title( $title ) {
// Return a custom document title for
// the boat details custom page template
if ( is_page_template( \'boatDetails.php\' ) ) {
return \'I\\\'m the boat details page\';
}
// Otherwise, don\'t modify the document title
return $title;
}
add_filter( \'wp_title\', \'wpse62415_filter_wp_title\' );
在任何地方都不进行其他更改,包括
header.php
.