Premium/Featured icon in post title

Posted in: Newspaper
Post count: 1

Hello,

I have been looking around for a few days to add a star/lock/whatever sort of icon next to a post title if that post is in a certain category or has a specific tag (featured or premium, for instance). I found some examples, but could not get them to work. Does anybody have a suggestion or way to work around this?

Any tip is much appreciated!

Post count: 22421

Hello,
The method that comes to mind is using the in_category function of wordpress: https://developer.wordpress.org/reference/functions/in_category/
You will have to modify the get_title function like so for posts:
if (in_category('Gadgets')){
$buffy .= '<h1 class="entry-title, customicon">';}
else{
$buffy .= '<h1 class="entry-title">';}

and replace this code: https://www.screencast.com/t/ikYJa8coe
And then you can use the new css class on your post title to add an icon to it using font awesome maybe.

For pages, the code is found here: https://www.screencast.com/t/quFJlOhp9

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.