Return to Snippet

Revision: 56790
at April 15, 2012 20:16 by paul0078


Initial Code
// Function to display list of latest news articles
function latest_news_list($count) {
?>
        <h3>latest news</h3>
        <ul>
                <?php
        global $post;
        $args = array( 'numberposts' => $count, 'offset'=> 0, 'category' => 1 );
        $myposts = get_posts( $args );
        foreach( $myposts as $post ) :  setup_postdata($post); ?>
            <!--        <p class="date"><?php the_date(); ?></p>  -->
            <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
        <?php endforeach; ?>
        </ul>
<?php   
}
?>

Initial URL


Initial Description


Initial Title
List of latest posts

Initial Tags
list, wordpress

Initial Language
PHP