Custom post type Archive page title
Hi!
I'm not able to control the title of the archive page for a custom post type I created.
The function mfn_page_title() that print the title in the subheader does not consider the case is_archive()
Is it possible to add this line into the function?
theme-function.php at line 729 :
elseif( is_archive() ){
// Archive -------------------------------------
$title = get_the_archive_title();
}
so that we can use the filter to do what we want with the title?
Thx for any answer
Comments