I should not that when i swithched hosts, I also changed url’s slightly:
it was previously on http://www.prettypoppyfloral.com/blog
now is on http://www.prettypoppyfloral.com
Still a little confused. The code for my navigation site is
<?php
/**
* You can change navigation in this is file
*
* @package WordPress
* @subpackage constructor
*/
?>
<nav class="navigation">
<?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 ?>
<?php wp_pagenavi(); ?>
<?php else: // Default page navigation ?>
<div class="alignleft"><?php next_posts_link(__('<span>«</span> Older Entries', 'constructor')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries <span>»</span>', 'constructor')) ?></div>
<?php endif; ?>
</nav>
Where would I add the get_stylesheet_directory_uri