Created
December 6, 2020 14:04
-
-
Save hedqvist/d480493a0872d9aa9957d5a87a933bcd to your computer and use it in GitHub Desktop.
Order Reviews - Custom Title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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