Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter cpettican

    (@cpettican)

    I modified the code to:

    <?php
    global $post;
    $args = array( 'numberposts' => 1);
    $myposts = get_posts( $args );
    foreach( $myposts as $post ) :	setup_postdata($post); ?>
    <?php the_category(' > ','multiple'); ?>
    <h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
    Posted by <?php the_author_posts_link(); ?> on <?php the_date(); ?>
    <?php the_content(); ?>
    <?php the_tags(); ?>
    <?php endforeach; ?>

    Now it seems to be working Ok.

Viewing 1 replies (of 1 total)