<?php query_posts('name=post-slug-goes-here'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_title() ?>
<?php endwhile; endif; ?>
Why is this not working for me? Thank you
<?php query_posts('name=post-slug-goes-here'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_title() ?>
<?php endwhile; endif; ?>
Why is this not working for me? Thank you
does nobody know this? Please help.
That looks like it should work. Did you replace 'post-slug-goes-here' with the actual slug of the post you want?
This topic has been closed to new replies.