if ( ! function_exists( ‘xeon_search_brand_title_20260831’ ) ) {
function xeon_search_brand_title_20260831( $title ) {
if ( is_admin() || ! is_singular( ‘post’ ) || ! is_string( $title ) ) {
return $title;
}
$suffix = ‘ | Xeon’;
if ( strlen( $title ) >= strlen( $suffix ) && substr( $title, -strlen( $suffix ) ) === $suffix ) {
return substr( $title, 0, -strlen( $suffix ) ) . ‘ | Xeon Creative’;
}
return $title;
}
add_filter( ‘seopress_titles_title’, ‘xeon_search_brand_title_20260831’, 1000 );
add_filter( ‘pre_get_document_title’, ‘xeon_search_brand_title_20260831’, 1000 );
}