Shakardara sharing information above all for Standard post format in WordPress bloging tips and tricks. Default standard post format in WordPress. This could be an article, a blog post, or any user. A standard post can be in any other post format. For example, a standard post might contain a gallery or video.
Post Formats is a theme feature introduced with Version 3.1. A Post Format is a piece of meta information that can be used by a theme to customize its presentation of a post. The Post Formats feature provides a standardized list of formats that are available to all themes that support the feature. Themes are not required to support every format on the list. New formats cannot be introduced by themes or even plugins. The standardization of this list provides both compatibilities between numerous themes and an avenue for external blogging tools to access this feature consistently.
Standard post format in WordPress bloging
In short, with a theme that supports Post Formats, a blogger can change how each post looks by choosing a Post Format from a radio-button list.
Using Asides as an example, in the past, a category called Asides was created, and posts were assigned that category, and then displayed differently based on styling rules from post_class() or in_category(‘asides’). With Post Formats, the new approach allows a theme to add support for a Post Format (e.g. add_theme_support(‘post-formats’, array(‘aside’))), and then the post format can be selected in the Publish meta box when saving the post. A function call of get_post_format($post->ID) can be used to determine the format, and post_class() will also create the “format-asides” class, for pure-CSS styling..
Supported formats
If the theme enables support for them, the following post formats are available for users to choose from.
Note that unless there is a change in the content of the post, the theme can use this user’s choice to display the post differently according to the selected format. For example, the theme “status” may leave the title display for publication. How things are presented depends entirely on the theme, but here are some general guidelines.
General guidelines for Standard post format in WordPress bloging
- On the one hand – usually styled without a title. Like Facebook Note Update
- Gallery – a gallery of images. The post may contain gallery shortcodes and image attachments.
- Link – A link to another site. Themes want to use the first <a href=LAYLAY> tag in the post content as an external link to this post. Alternatively, if the post contains only the URL, it will be the URL and the name associated with the title (post_title) anchor.
- Image – The first <img /> tag imagery can be considered in a single icon post. Alternatively, if the post contains only the URL, the icon will be the URL and the post title (post_title) will be attributed to the title.
- Quote – Probably a price. Contains the value of a block containing quotes. Alternatively, the title can only be the source, with the source / author as the title.
- Status – A short status update, similar to the Twitter status update.
- Video – A video or video playlist. The first <video> tag or object / embed in the post content can be considered video. Alternatively, if this post contains only one URL, it will be a video URL. If the video is enabled on the blog (such as via a plugin), the post may include an attachment to that video.
- Audio – An audio file or playlist. Can be used for podcasting.
- Chat – A copy of the chat, such as:
Note: When writing or editing a post, the standard is used to assign that no post format is specified. Also, if a format is specified that is incorrect, then the standard (no format) will be used.