External Post Display
-
Hello all,
Looking for some question advice here. Currently, have my posts being pulled from my blog to display externally but, it’s not displaying them from the most recent date (July) only from (May)
<?php
require(‘blog/wp-blog-header.php’);
?><?php
$posts = get_posts(‘numberposts=5&order=ASC&orderby=post_title’);
foreach ($posts as $post) : setup_postdata( $post ); ?>
<?php the_date(); echo “
“; ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php
endforeach;
?>
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
The topic ‘External Post Display’ is closed to new replies.