To do that, one needs to go back to get_post_format()
as the Codex page explains:
$format = get_post_format();
if ( false === $format )
$format="standard";
So in order to check if a post is in standard format, I can use this shortcut:
if ( false == get_post_format() ) {
// I'm a standard format post
}
/* or */
if ( ! get_post_format() ) {
// I'm a standard format post
}
Or reverse the scheme to check if a post is just not in standard format:
if ( false !== get_post_format() ) {
// I'm everything but a standard format post
}
/* or */
if ( get_post_format() ) {
// I'm everything but a standard format post
}
Related Posts:
- What is the condition to check if we are in admin or frontend?
- Actions, functions and conditionals
- is_home , is_front_page not working
- What is the correct method for determining ‘is_front_page’ when using filters such as ‘pre_get_posts’ and ‘posts_where’?
- how to check if front page is set to show a static page
- Way to check if we are in Theme Customizer mode? [duplicate]
- How can we use conditional tags in plugins?
- Conditional tag for all categories of a custom post type
- is_home() vs is_archive()
- Blog Posts vs Static Page (conditional statements)
- Adding Controls to Theme Customizer If Certain Page Template is Active
- Do I need to include ‘else’ and/or ‘endif’?
- Make specific tag visible only to logged in users in front-end
- How can i know when i can execute what functions of wordpress?
- Issue getting gettext to work with conditional statements
- Post tags show outside loop?
- Need help with else if statement
- WordPress conditionals not working
- wp_head hook by page ID [closed]
- Cannot Use is_single() and is_admin in functions.php
- Hide a template part when page is password protected?
- Limit Contact Form 7 hook to specific form [closed]
- Checking whether template part is loaded in a page
- Conditional tags inside a class
- Display Footer Shortcode Different for Logged In Users
- Use slug rather than id for $post->post_parent?
- If Parent or Current Page Is, Then Statement?
- Trouble with parent and child conditional tag to show content
- A simple method for disabling WPML language switcher when meeting specific circumstances [closed]
- Display a div only in some author’s single posts
- What do I add to this code to include additional CPTs?
- Loading template parts conditionally in Customizer
- Conditional check for embedded video in the_content
- Conditional IF statement not returning true even though echo of $user->province is correct
- is_front_page not working at all in any of the themes .php files
- is singular and is home not working
- add styles if custom header was included
- Check if user registered more than a month ago
- PHP if statement printing the if parameters
- Why is this is_page conditional not working?
- If page displays posts conditional
- Conditional tags not working
- How to check with is_page if 404.php is loaded?
- Sub-category single post styling?
- I need use is_single in functions.php
- How to apply a function if conditon a & b [closed]
- do code if current url = value
- Why might conditionals not work on a page?
- Conditional display faults
- Is there any way to assign stylesheets to whole sets of pages using is_page( )
- is_home() returns true while it shouldn’t
- Conditional tags help (if none, don’t display anything)
- How to display a feature only if custom field value is set?
- Filter for the Custom Post List Page
- Additional conditions tags to work
- Gravity Forms, multiple conditions in shortcode
- Conditonal tag or work around to identify page number of pagnation
- Conditional: current user updated post in the last X days
- How can I get $pagenow equals to the Home Page or specific page on my site?
- page single conditional
- Three variables on conditional tags
- Is it possible to If statement “article already appears on page”?
- Cannot retrieve active members only
- Conditional for Post Format
- Custom Function for Portfolio Archive Template With Conditonal Tag
- Conditional Custom Image Header
- Trying to place shortcode/css/html into an IF conditional statement
- Conditional Tag Based on Age of Post [duplicate]
- Will multiple conditionals slow down page load?
- conditional statement for profile pages
- Conditional single.php statement not recognizing conditionals
- WP newbie: using else/if statements to show multiple headers. bonks
- Conditional tag-like function to tell if post is in trash?
- Getting false for is_home() on Posts page
- Automatically insert H2 on h2 tags on WordPress post
- Content visibility condition based on date
- Add an identifier to a set of pages to access using a conditional tag
- Why is_page() returns false when visiting the static page declared as “posts page”
- if is NOT custom post type OR is NOT page combination [closed]
- What changes are needed for this conditional code to work on deeper levels?
- How to detect if bbPress forum index
- Conditional tags returning different results for different areas on a page?
- Displaying message if no posts in tag
- WordPress Conditionals Giving Me A Headache
- PHP inside echo HTML?
- My Conditional Tags not Working
- Is this a bad approach to add conditional comments to wp_head?
- Help with if else statement for separating content from image attachment
- How to check if the current page’s parent is one of 2 different ID’s
- Showing code only on Front Page “Posts Page”
- Targeting all pages except top level pages
- Display Latest Post on a Page Conditionally
- is_archive for custom tax archive page?
- Help with adding conditional title tags to header.php
- How to apply style to the body tag of a particular page?
- Conditional statement with three condition
- if is_page(‘slug’)
- problem with not displaying content on selected pages
- Delete backgound for ID with conditional if statement
- Quick Conditional Tag Question if elseif [closed]