I am having a tad bit of trouble with showing the FULL ARTICLE on this main page:
http://www.foxvalleyshows.com/new/index.php
Here is the snidbit of code that I am using:
<?php $posts = get_posts('numberposts=10&offset=0&category=3'); foreach($posts as $post){ ?>
<?php the_time('F jS, Y') ?>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<?php the_content();} ?>
I have tried removing the <?php the_excerpt(); ?> code but then only the title shows. So I am assuming that I have something wrong with the code or my settings in WP. But I can't find anything relevant to this situation.
Maybe there is a setting about a limit of text per posts in a ".php" file??
Any help would be fantastic...
-Mark