Add words to category archive title
-
great plugin – I have been trying to alter the h1 heading for the categories archive listings page (for seo purposes) – I would like to add 2 words of text before each title on this page. I tried adding to the functions file something like the following (copied and pasted from another source) but nothing changes. Any help would be greatly appreciated.
function new_cpt_archive_title($the_title){
if ( is_post_type_archive(‘acadp_listings’) ){
$the_title = ‘Courses in ‘ .$the_title;
return $the_title;
}return $the_title;
}
add_filter( ‘pre_get_document_title’, ‘new_cpt_archive_title’, 10, 2 );
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Add words to category archive title’ is closed to new replies.