Post Formats allow for various types of posts to be styled or formatted based on their meaning.
5
votes
2answers
1k views
post formats - how to switch meta boxes when changing format?
Problem
After realizing that post formats are pretty popular, but only a extremly rough drawn concept, i see that users will run into possible traps.
Post format ...
uses post meta fields & ...
1
vote
3answers
1k views
How do I add a new custom post format?
How do I add a new custom format while making a post in WordPress?
The default formats are standard, aside, image, gallery... I want to add a new format of 'xyz' name. How can I do it?
0
votes
1answer
209 views
Understanding Post Formats/Custom Post types Etc
I don't understand what "Adding Post Type Support" is for when we have "Adding Theme Support"?
For different post-formats this is the way I was shown before. This is then how I did it for the project ...
5
votes
4answers
1k views
Display/query post formats
WP 3.1 has everyone excited, if somewhat confused, about post formats.
Enabling new post formats
The issue of enabling post formats has been covered at length. It's as simple as adding this line to ...
0
votes
1answer
479 views
Help altering a query to exclude all but standard post format
I feel like I've been banging my head against the keyboard for a week with this problem. I'm trying to change my current query on my home page to show only posts that are set as standard posts using ...
6
votes
2answers
3k views
How do I query by post format in WordPress 3.1
I am trying to query for all posts with a post format of 'quote.' I have added the post formats to my functions.php with
add_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'quote' ...
3
votes
4answers
1k views
Is it possible to remove the “standard” post format?
I'm using post formats heavily on a project, but have no current need for the standard option. Beyond being an unnecessary bit of UI, it actually causes broken behavior if it does get mistakenly ...
3
votes
4answers
1k views
Is it possible to rename a post format?
Since WP 3.1, it's been possible to use Tumblr-style post formats. I want to use the 'aside' option in a theme, but I want it to have a different title in the WP admin area.
So, for example, when a ...
1
vote
1answer
411 views
Plugin to set all Posts in a certain Category to a certain Post Format
I want to setup my WordPress so that whenever I create a post with the category "Tweet", my wordpress installation automatically changes the post format from post to aside. This will help me because I ...
5
votes
3answers
2k views
has_post_format() vs. get_post_format()
I just stepped into the concept of post formats and was wondering why there are two out of 3 functions from the post format "API" offer absolutely the same functionality. Consider the following two ...
2
votes
2answers
3k views
Custom Post Formats for Custom Post Types
The weight of opinion seems to favour using custom post types instead of custom post formats.
I have several custom post types that I want to style in 4 different formats in a way that is not public ...
1
vote
3answers
614 views
Only get_posts of certain post formats
I'm trying to create a archive list with only my "normal" post format articles (not link, aside, quote, etc formats).
How would I implement has_post_format( 'standard' ), or something similar, into ...
2
votes
1answer
85 views
Is there a real life use case for post formats except for microbloging?
I am trying to write a guide for using wordperss and can't quiet figure how explain the usage of post formats. I read all the documentation available on the web and then played with twentytwelve and ...