Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Fixing WordPress
    In reply to: WordPress transfer
    Thread Starter prettypoppyfloral@gmail.com

    (@prettypoppyfloralgmailcom)

    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

    Thread Starter prettypoppyfloral@gmail.com

    (@prettypoppyfloralgmailcom)

    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

Viewing 2 replies - 1 through 2 (of 2 total)