cali15
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Major Formatting IssuesOh, and I work in both Firefox and Safari.
Forum: Fixing WordPress
In reply to: “Previous/Next Post” Navigation IssueJust an update – I looked at the original demo of the theme (https://themes.wordpress.net/testrun/). The same issue occurs, so obviously it’s an issue with the theme itself. But I really want to use it for my site. I’ve emailed them, but if anyone has any ideas about what it could be, I would be very grateful!
Forum: Fixing WordPress
In reply to: “Previous/Next Post” Navigation IssueThanks, Harknell. My theme has singlepost.php, but there isn’t nav code there, which makes sense because there isn’t navigation in the posts themselves. I’ve posted it below. I went into archives.php and copied the nav code from there and it didn’t work. Any other suggestions?
Singlepost.php
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id=”content”><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”boxpost”>
<div class=”datario”><?php the_time(‘M d Y’); ?></div>
<div class=”post”>
<h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2><div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div><p class=”postmetadata”><img src=”<?php bloginfo(‘template_directory’); ?>/images/folder_edit.png” alt=”category”></img> <?php the_category(‘, ‘) ?> <img src=”<?php bloginfo(‘template_directory’); ?>/images/comments.png” alt=”comments”></img> <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?> <?php edit_post_link(‘//Edit’); ?></p>
<!–
<?php trackback_rdf(); ?>
–>
</div></div><?php comments_template(); ?>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>
<?php get_footer(); ?>