• Currently, I’m working on making my site WordPress-compatible. I’ve noticed that I need a sidebar. The thing is I don’t want one. Now what? Also, how can I make my site have that “Previous Entries” link on the bottom of the page?

    Thanks,
    Mason

Viewing 2 replies - 1 through 2 (of 2 total)
  • You don’t have to have a sidebar. If you don’t want it just don’t include the call to <?php get_sidebar(); ?> in your template files.

    Also for the previous entries on the bottom of your page you would add this code:

    <div class="alignleft">
      <?php previous_posts_link('&laquo; Newer Posts') ?>
    </div>
    
    <div class="alignright">
      <?php next_posts_link('Older Posts &raquo;') ?>
    </div>
    Thread Starter ncmason

    (@ncmason)

    Thanks. If I just want to use WordPress on a certain part of a site, how should I install it?

    I want to use WP on the main page of this site, that’s all.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Converting Question’ is closed to new replies.