[Solved] How to get wordpress empty content list


Try to use below code:

$args = array(
    'post_type' => 'post',
    'post_status' => 'publish',
    'posts_per_page' => -1,
    'orderby' => 'ID',
    'order' => 'desc');

$blank_posts = array();

$posts = new WP_Query( $args );

if ( $posts->have_posts() ) : 
    while ( $posts->have_posts() ) : $posts->the_post();
       $content = get_the_content();
        if($content == '') { 
            array_push( $blank_posts, $post);
        }
    endwhile;
endif;

/* print all blank content posts */
//echo "<pre>"; print_r($blank_posts);

/* loop */

if(!empty($blank_posts)){
    foreach ($blank_posts as $pst) {
        echo "ID= ". $pst->ID . ', '. "Title= ". $pst->post_title .'<hr />';
    }
}

4

solved How to get wordpress empty content list