I created a new taxonomy and the archive page would just say “Currently browsing” but no location or title.
I’ve changed the function pinboard_current_location and added these lines
elseif ( is_post_type_archive()) {
post_type_archive_title();
}
is this correct? I’m using a child theme, but could be something to change in the original theme.
The call is correct, make sure it’s above this code:
else {
single_term_title( '' );
}