• Resolved erwin_m

    (@erwin_m)


    I want to create a list, just the last one actually, of the recent posts. But I don’t want the draft post listed in there. How can I do this?

    The code I’m using is:

    <?php
    	$args = array( 'numberposts' => '1' );
    	$recent_posts = wp_get_recent_posts( $args );
    	foreach( $recent_posts as $recent ){
    		echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a> </li> ';
    	}
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘create list without draft posts’ is closed to new replies.