get_posts() and permalink – only showing page title/link, not post title/link
-
Hi,
I’m using the following code to display the most recent post on my static homepage. It appears that “the_permalink” and “the_title” aren’t working – I only see the page title (Home) and the page link (www.thinkbicycles.org/)
How do I get it to display the post’s title and URL instead?
<?php
$previous_posts = get_posts(‘numberposts=1’);
foreach($previous_posts as $post) :
setup_postdata($post); ?>
“><?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 ‘get_posts() and permalink – only showing page title/link, not post title/link’ is closed to new replies.