Okay then, for Yet Another Related Posts Plugin, go to the options and turn off (uncheck) 'Automatically display related posts' and then edit your single.php
and add this line :
PHP Code:
<?php related_posts(); ?>
directly after this one :
PHP Code:
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
Now on to Subscribe Remind - it does not allow you to position it (at least the free version doesn't).
So you can either accept that the line "if you liked this post subscribe to my rss" will always be above the page numbers or you can disable subscribe remind all together and just manually do what it does in your theme file..
If you want to go the manual way it's easy.
Just add this to your single.php directly after the wp_link_pages line :
Code:
<p><em>If you enjoyed this post, make sure you <a href="http://freewomensblogs.com/feed/">subscribe to my RSS feed</a>!</em></p>
So let's put it all together :
Version 1 (if you disable Subscribe Remind)
PHP Code:
<?php get_header(); ?>
<!-- Content -->
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Post -->
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-title">
<div class="post-date">
<span><?php the_time('d') ?></span>
<?php the_time('F') ?>
</div>
<h2><?php the_title(); ?></h2>
Author: <?php the_author() ?> / Category: <?php the_category(', ') ?>
</div>
<div class="post-entry">
<?php the_content('Read more...'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<p><em>If you enjoyed this post, make sure you <a href="http://freewomensblogs.com/feed/">subscribe to my RSS feed</a>!</em></p>
<?php related_posts(); ?>
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
<?php edit_post_link('Edit this entry.','',''); ?>
</div>
<?php comments_template(); ?>
<div class="post-info"></div>
</div>
<!-- /Post -->
<?php endwhile; ?>
<?php else : ?>
<!-- Post -->
<div class="post">
<div class="post-title">
<h2 class="not-found-title">Not Found</h2>
</div>
<div class="post-entry not-found-entry">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
<div class="post-info"></div>
</div>
<!-- /Post -->
<?php endif; ?>
<div class="navigation">
<div class="alignright"><?php next_post_link() ?></div>
<div class="alignleft"><?php previous_post_link() ?></div>
</div>
</div>
</div>
<!-- /Content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Version 2 (you keep Subscribe Remind)
PHP Code:
<?php get_header(); ?>
<!-- Content -->
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Post -->
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-title">
<div class="post-date">
<span><?php the_time('d') ?></span>
<?php the_time('F') ?>
</div>
<h2><?php the_title(); ?></h2>
Author: <?php the_author() ?> / Category: <?php the_category(', ') ?>
</div>
<div class="post-entry">
<?php the_content('Read more...'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php related_posts(); ?>
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
<?php edit_post_link('Edit this entry.','',''); ?>
</div>
<?php comments_template(); ?>
<div class="post-info"></div>
</div>
<!-- /Post -->
<?php endwhile; ?>
<?php else : ?>
<!-- Post -->
<div class="post">
<div class="post-title">
<h2 class="not-found-title">Not Found</h2>
</div>
<div class="post-entry not-found-entry">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
<div class="post-info"></div>
</div>
<!-- /Post -->
<?php endif; ?>
<div class="navigation">
<div class="alignright"><?php next_post_link() ?></div>
<div class="alignleft"><?php previous_post_link() ?></div>
</div>
</div>
</div>
<!-- /Content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
: phew : Okay that should hopefully do it for ya
Bookmarks