Get post only from 'standard' post format
I use the following codes to get posts only from 'image' post format and it works.
?php if( has_post_format('image')){ ?
?php the_post_thumbnail(); ?
?php } ?
I also need to get posts only from 'standard' post format with the following codes, but it get post from all post formats.
?php if( has_post_format('standard')){ ?
a href="?php the_permalink(); ?" rel="bookmark"?php the_title(); ?/a
?php } ?
Any solutions?
Topic post-formats posts Wordpress
Category Web