KurtWagnerOne / wp-constructor

Automatically exported from code.google.com/p/wp-constructor
0 stars 0 forks source link

How do you remove the links at the bottom of a post. #171

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
At the bottom of each post there are links to the previous & following posts.  
How can these be removed?

What version of the ... are you using?
1. Wordpress:3.2.1
2. Constructor:latest
3. PHP:???
4. Browser: Firefox 5.0
5. OS: MAX OS-X 10.6.5

What URL of your blog(s)?
1. http://aguilbert2.ipage.com/aguilbert

Please provide any additional information below.

Original issue reported on code.google.com by anthony....@gmail.com on 13 Jul 2011 at 1:03

GoogleCodeExporter commented 8 years ago
You can edit navigation.php and remove this is logic:
Replace:

    <?php if (is_singular()) : // Whether is single post, is a page, or is an attachment ?>
        <div class="alignleft"><?php next_post_link('%link', '<span>«</span> %title') ?></div>
        <div class="alignright"><?php previous_post_link('%link', '%title <span>»</span>') ?></div>
    <?php elseif (function_exists('wp_pagenavi')) : // Plugin pagenavi ?>

To:
<?php if (function_exists('wp_pagenavi')) : // Plugin pagenavi ?>

Original comment by AntonShe...@gmail.com on 13 Jul 2011 at 6:50

GoogleCodeExporter commented 8 years ago
Thank you!

How might I close the space between links in the "Header Menu?"  I can't
seem to identify that in the code.

This is my last tweek, thanks for the support!

--Anthony

Original comment by anthony....@gmail.com on 20 Jul 2011 at 7:43