dumb wordpress questine

Out of context: Reply #6

  • Started
  • Last post
  • 26 Responses
  • ukit20

    Well you shouldn't need to make a different template for every page unless the design is different. Usually you would include some code like this to pull the content of your page:

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php the_content(); ?>
    <?php endwhile; endif; ?>

    It's true that they don't give you a place to enter sidebar content for each page. You would have to use a plugin to add that kind of functionality. Something like this would work: http://wordpress.org/plugins/adv…

    • that's what i thought - thanks for all your help. it seems a shame something so simple is so hard to do in WPhans_glib
    • Yeah I guess the typical WP model is to have the same sidebar on every page.ukit2
    • gawd, that plugin is for serious codeheads... way beyond me I fearhans_glib

View thread