Listing these articles (small PHP Code)
-
Ok so this code here displays the pending posts
<?php $args= array( 'post_type' => 'post', 'post_status' => 'pending' ); query_posts($args); ?>How do I then post each result into a /ul /li and so on? as they now display like this. http://streakingpirates.com/pending/
would I do something like
<ul> <? =post /> </ul>
I’m no good with php so that’s an absolute guess
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Listing these articles (small PHP Code)’ is closed to new replies.