Many times, when I don't want 'people to see my Tag and Category link' that come with the Post Title, I just remove them via CSS.
There are just two things to know — a) CSS class associated with "something" you want to play with; that you can easily find by Page Source; b) over-riding the CSS rule by the keyword "!important."
.tags-links,
.cat-links {
display:none !important;
}
Comments
Post a Comment