Tagged: Tags
Hi,
Is there any way I can have specific tags pages have the tag as the title instead of “posts” and also have post excerpts with a read more link instead of entire posts?
Thanks
Jonny
Hi deyowulf!
1) You can change the headline with following code – insert it at the bottom of functions.php
add_filter('avf_tag_label_names', 'avia_change_tag_headline', 10, 1);
function avia_change_tag_headline($headline){
$headline = single_tag_title('', false);
return $headline;
}
2) See https://kriesi.at/support/topic/set-post-length-in-archive/
Best regards,
Peter
Thanks Pete. How might I go about changing the color of the headline?
Hi!
By headline, you mean the page title? You can use this on Quick CSS:
#top .alternate_color.title_container .main-title a {
color: blue;
}
Cheers!
Ismael
Yeah like “asian recipes” in this page. This code didn’t work for me btw.
http://www.jonnyfreesh.com/tag/asian-recipes/
Thanks
Hi!
Please try following code instead
.main_color h3.post-title {
color: red !important;
}
Regards,
Yigit
that worked thanks :)