Changing the archive title on donation single page
-
Hi, On the archive donation single page it display the title as Donation Forms I would like to change it to Support our Cause instead of donation Forms. I will be using this archive single page as a default template displaying all our donation form.
I have tried this code it did nothing
add_filter('my-give-archive-title' , 'my_give_archive_title'); function my_give_archive_title($content) { global $wp_query; if ( 'donation' != $wp_query -> query_vars['donation'] ) return $content; return '<h1 class="my_custom_class">Support Our CAUSE</h1>'; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Changing the archive title on donation single page’ is closed to new replies.