Hello,
What do you mean with post_types in blog?
Sorry, I wasn’t specific enough, but I’ve also learned a bit more about my set-up over here.
Basically, my blog used a plug-in to download all my Tweets. Tweets are stored as custom post type. It’s indicated by “aktt_tweet” in the “post_type” collumn in the wordpress database table.
I would like to modify the Maskitto Light theme so that all tweets (associated with this post type) are (1) first of all displayed alongside my other posts and (2) that the colour for the category tag is changed to blue for each of these posts.
Does this make sense?
This is pretty advanced function and at this moment we can only guide you where to look.
1. If you want to show twitter posts beside standard posts you will need to modify following files, while adding custom function to get necessary posts:
* inc/widgets/sh-blog.php – to modify posts for page builder widget
* index.php – to modify posts for main blog page
* archive.php – to modify posts for blog categories page
2. Under content.php you will need to modify code lines under <?php if( count($category) && $category_name ) : ?> by adding if statement for post type.
Thank you shufflehound, that’s done it for me. I also modified the style.css file for slight changes to the way twitter posts were displayed. It’s looking quite nice now.