Skip to content

Instantly share code, notes, and snippets.

@hedqvist
Created December 6, 2020 14:04
Show Gist options
  • Save hedqvist/d480493a0872d9aa9957d5a87a933bcd to your computer and use it in GitHub Desktop.
Save hedqvist/d480493a0872d9aa9957d5a87a933bcd to your computer and use it in GitHub Desktop.
Order Reviews - Custom Title
<?php
add_filter('wp_title','custom_reviews_title',99,1);
add_filter('pre_get_document_title', 'custom_reviews_title',99,1);
function custom_reviews_title($title){
if (function_exists('wcor_is_feedback_page')) {
if ( wcor_is_feedback_page() ) {
$title='Order Review Page Title'; //define your title here
}
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment