Reply To: Format tags & category in posts

Home Forums Support Format tags & category in posts Reply To: Format tags & category in posts

Home Forums Support Format tags & category in posts Reply To: Format tags & category in posts

#228920
Tom
Lead Developer
Lead Developer

I think I understand.

I don’t know if it’s possible to wrap them in h3 tags (not sure this is good for SEO either).

However, you can stack them.

First, remove the commas in between them with this function: https://gist.github.com/generatepress/18e41e03783b5c7e86402d429e64efc0

Then add this CSS:

footer.entry-meta .cat-links a, 
footer.entry-meta .tags-links a {
    display: block;
    float: left;
    clear: both;
}

.tags-links:before,
.cat-links:before {
    content: '';
}

.post-navigation {
    clear: both;
}

Hope this helps get you started 🙂