If you are willing to remove the title “Keyword” in the Keyword archive page then WP Travel plugin provides the feature regarding removing the title “Keyword” in the Keyword archive page using filter code.

To remove the title “Keyword” in the Keyword archive page, please add the following given code in the functions.php file of your child theme.
add_filter('get_the_archive_title', function ( $title ) {
if ( is_tax( 'travel_keywords' ) ) {
return preg_replace( '/^[\w]+([\s]?\w+):/', '', $title );
}
return $title;
} );
For detail information regarding how to create a child theme, please refer to our Knowledgebase.
Output:

Also, if you want to rename the “Keyword” title on the Keyword archive page then please add the following given filter code in the functions.php file of your child theme.
add_filter('get_the_archive_title', function ( $title ) {
if ( is_tax( 'travel_keywords' ) ) {
return preg_replace( '/^[\w]+([\s]?\w+):/', 'Your Text Here:', $title );
}
return $title;
} );
Output:

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Further, if you have any queries, please submit them to our Contact page.