• Ok this may seem basic but I’ve been working with wordpress for over a year now and I still haven’t figured it out so hopefuly someone can help me…What I’m trying to do is have different pages which will have different posts in each page…So for instance if i have a celebrity page the post will show up on the celebrity page as an individual post not the page itself. So i can throw a post about tiger woods down and a post about lady gaga down all on one page (not the home page) and individual posts can recieve individual comments and all that can go on one page and not interfere with other pages like my tech page or my world news page or updates about me page…where each page can be updated with posts individually instead of pages be on one topic and all posts go straight to the home page…

Viewing 2 replies - 1 through 2 (of 2 total)
  • Yeah, me too

    To get around it, I installed a plugin named “links to”

    https://txfx.net/wordpress-plugins/page-links-to/

    Then I was able to redirect a page to the URL for a category

    All the posts I wanted on a particular page had to have the same category.
    And any content already on the page had to replaced by post of the same category
    I made sticky the posts I wanted on the home page and limited the number of posts that display on the home page, so the new posts only appear on the relevant page

    I’d just use categories. Use the blogroll to link to the categories that you want to use. If you want an index with normal posts without the categories that you want to make a page for, you can exclude them by using the following code on the index.php of your theme:
    <?php if (in_category('20')) continue; ?>
    (“20” is of course the ID of the category to exclude)
    This code goes just below “the loop” (which is <?php while (have_posts()) : the_post(); ?>).

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