Thread Starter
ginji
(@ginji)
Single Post page, I think.
Thread Starter
ginji
(@ginji)
Oh, thanks. But how would I add it into the full article?
Thread Starter
ginji
(@ginji)
My loop? Where’s the loop? My page has the following:
<?php get_header(); ?>
<!-- content ................................. -->
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php edit_post_link('edit','',''); ?>
<?php endwhile; ?>
<?php endif; ?>
</div> <!-- /content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Thread Starter
ginji
(@ginji)
I’ve added it to page.php but it still won’t show.