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.