rename page-header-title at The Events Calendar archive
-
oceanwp gives the archive-page from events calendar the page header title “Events” (translated into German “Veranstaltungen”) I have found the following code
// Alter Blog Title
function my_alter_page_header_title( $title ) {
// Change the posts title to their actual title
if ( is_singular( 'post') || is_category() || is_tag() ) {
$title = 'My Blog Title';
}
// Return the title
return $title;
}
add_filter( 'ocean_title', 'my_alter_page_header_title', 20 );can someone tell me how to change “is_singular( ‘post’) || is_category() || is_tag()” so that the title is changed?
thanks for your help
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.