Please find below a quick solution to your problem
- first query for all empty titles
- place the result in an array
-
query again for post__not_in
see below sample code$query = new WP_Query('post_title=\'\''); $a_empty_titles = array(); while($query->have_posts()){ $query->the_post(); array_push( $a_empty_titles ,$query->post->ID); } wp_reset_postdata(); wp_reset_query(); echo count($a_empty_titles); $query = new WP_Query( array( 'post__not_in' => $a_empty_titles ) ); //your loop code here //reset query wp_reset_postdata(); wp_reset_query(); ?>
Related Posts:
- query posts in wordpress
- posts_nav_link(); not showing up on static pages
- Why is the first query affecting the second query, even after wp_reset_query() and wp_reset_postdata(), but not on the second page?
- show a post from a specific post format
- How can I use the WordPress Loop and Pagination in multiple instances but different scenarios throughout my site?
- WP_Query not getting all posts, just tagged posts
- issue displaying variations in custom template using WPeC 3.8.9.2
- Are content.php and content-single.php the same?
- Get ‘page’ number with infinite scroll
- Get 10 posts from a WP_Query. If less than 10, get the remainder from elsewhere
- Why doesn’t /2013/01/ properly return January’s archives in archive.php?
- Strategy to get post meta for use outside the loop
- Single Page WordPress Theme – Using page templates
- A two column loop with one lead post
- Change loop order via form or link (jquery, not URL)
- First post of each category
- Is there any need to use both wp_reset_postdata and wp_reset_query together?
- Getting Permalink within the loop
- the_content() in single-{post-type}.php problem
- Why does this loop only work on the homepage?
- Why is this coming back as null? Thats wrong. There is one post
- How to retrieve an image from a post and display it before excerpt of a post? [duplicate]
- Get list of months with posts
- Finding Page Template and Displaying Content
- How WordPress converts URL to $query_string
- Link won’t show using the_permalink();
- Force index.php have_posts() loop to exit if no sticky posts found
- Custom URL parameters in template files
- Metadata Query when storing data as array possible?
- Displaying recent post excerpts on static front page
- Keep sticky posts out of query unless they have featured image
- How to show user online status on their posts?
- Custom get_the_excerpt() only works on first post
- Two loops on archive page
- What’s the best practice way of handling custom fields in different post formats?
- Check if loop has any categories?
- Echo all category names, apart from one
- Displaying icon image for WordPress post formats, is there a cleaner way to do this?
- how to get the post attachement image in full size?
- How to query the latest 5 posts and sort them by title?
- Get the amount of posts on a given page
- 2 loops, is_home won’t work, count is off
- How to list articles by year based on url?
- Wp_query with 2 meta keys and array of meta values
- Custom WP_Query doesn’t display all posts
- Change image size depending on page
- How do I get standard posts to open up in their own template when using get_template_part()?
- WP_Query with custom post type ID
- CSS class on last post in loop ( custom query )
- Custom Post Type Query issue
- How to order by multiple date meta_values?
- How to create query to get top 3 sticky/latest posts
- how to retrieve the image title for image Post Format
- Previous and Next links not populating, have I missed something?
- Get all posts as an array ID => Name
- Twenty Seventeen Pages Loop
- How does the loop know which post to view?
- how to handle the loop using filling bootstrap grid structure?
- How to create Page templates for showing Blog posts in different layouts?
- Writing less unnecessary code with WordPress
- Exclude subcategory from wp_query
- Style first 3 posts differently with WP_Query [duplicate]
- tag__in does not return posts
- View list of all attachments on site
- first excerpt fine, subsequent post excerpts shift to the right instead of displaying vertically [closed]
- Pagination and multiple loops
- multiple queries to get posts from same category?
- Search.php gets metadata from first post
- Adding link post format to theme and permalink to rss feed
- Best practice for implementing a blog page / section in wp_menu_nav()
- List categories of a post hierarchically?
- Exclude parent categories from the_category() within the loop
- get_the_terms() returning wrong results inside of loop
- Show only pages you are author of
- White screen of death on index.php page 3 and above?
- WordPress theme files Organization
- Infinite loop when nesting have_posts()
- Local variable name in setup_postdata()
- Loop is breaking my theme. How can I fix?
- my ajax wont sent the data, please correct my code
- Problem with Displaying Custom Theme Page’s Content
- active link for most recent post on vertical tabs
- An archive page without post format (just standard post)
- How to show the posts list into a static page? Problems to use the loop into a static page
- Conditional loop based on current page
- Suppress the_content filter in a nested loop
- Tags interfering with next_post_link();
- Simple loop with shortcode rendering problem
- How get the 10 most viewed pages (not post)
- The normal loop with different styles doesn’t work in search.php
- Checking conditionals
- Paginated WP_Query doesn’t return 404’s, even when posts don’t exist
- All post ids are the same after this query but rewind_posts() does not seem to work here?
- Not Found when using activity stream as front page with BuddyPress
- Exclude post formats in custom loop
- have_posts() return false on single post
- How to defeat “Blog pages show at most __ posts” setting in the loop?
- Display Page featured Image as well as Posts featured Image
- Get author meta data with no published posts in author.php?
- Meaning of “if ( is_home() && ! is_front_page() )” snippet?