Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Forum: Fixing WordPress
    In reply to: Permalinks
    Thread Starter AGriffin89

    (@agriffin89)

    Never mind, I fixed it by using /%postname%/ in the customer structure box ??

    Forum: Fixing WordPress
    In reply to: Permalinks
    Thread Starter AGriffin89

    (@agriffin89)

    I mean if I set it to Default option the blog page works fine in that when there’s a certain amount of posts on the page they move to the next page. However this means the non-blog pages don’t have names like abc.com/def.

    If I use template then I can name the non-blog pages as I like but on the blog page all the posts remain on one page.

    Thread Starter AGriffin89

    (@agriffin89)

    I’ve managed to sort it out. Many thanks for your help ??

    Thread Starter AGriffin89

    (@agriffin89)

    Thanks for replying. That’s all jargon to me, someone else made the layout for me ??

    The code for the theme is:

    <?php get_header(); ?>

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

    <div class=”main”>
    <div class=”posttitle”><?php the_title(); ?></div>
    <div class=”postmain”><?php the_content(‘Read More of this Page’); ?>
    <?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?></div>
    </div>

    <?php endwhile; endif; ?>

    <?php get_footer(); ?>

    Do I want to be changing that?

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