Support » Fixing WordPress » Linking posts to pages

  • Hi,

    I’m wondering how can I link my posts to the pages I’ve created.
    I can add a category to assign my posts to, but can’t seem to figure out how I can make posts appear under a particular page.
    For example, I’ve got a page ‘Fashion’, and I’ve got a post about fashion.

    How can I make my post to appear in ‘Fashion’ Page, when you click on it?
    Is there a specific plugin?

    Please can you help..

Viewing 8 replies - 1 through 8 (of 8 total)
  • If you use custom menu’s, then you can simply add a category to the menu, ie add the category Fashion to your menu.

    Custom menu’s are easy to set up, and you can go back to automatic if you don’t like it, so give it a try !

    Just go to appearance>menus, and set one up!

    Thread Starter gunelg

    (@gunelg)

    Thanks very much. It worked.

    But now it says, Category Archives: Fashion on the top of the page, then it lists the posts.

    Am I able to remove these words somehow so it would be just a plain list of recent posts? For example like this: http://www.urban-coco.com/category/fashion/

    Yes you can remove breadcrumbs (as these are called) if you can code in your CSS

    see this thread

    http://wordpress.org/support/topic/theme-oxygen-removing-breadcrumbs?replies=14

    Thread Starter gunelg

    (@gunelg)

    Thanks again,

    I’m using Max Magazine theme.

    Posted this code everywhere, page itself, on theme editor (pages.php), categories description. Doesnt seem to work.

    .breadcrumbs {
    display: none;
    }

    Is this an incorrect code to use?

    Just check that your theme doesn’t use a breadcrumb plugin, check your plugins, usually their called something breadcrumb.

    If not gave a look in single.php for blog posts, (index.php from the main page, page.php for pages)

    In each of these do a search for “breadcrumb” and see if it is set in these – could be under several names . If so it might be easiest just to comment them out using //

    Thread Starter gunelg

    (@gunelg)

    Hi

    Thanks again,

    But there’s nothing called breadcrumb in these theme. I looked it up everywhere. Even installed Yoast WordPress SEO plugin to disable breadcrumbs – didn’t work either.

    What other names breadcrumbs might be under?

    Thread Starter gunelg

    (@gunelg)

    I’ve figured it out.

    Just removed this from Category.php

    <h2 class="page-title">
    			<?php	printf( __( 'Category Archives: %s', 'max-magazine' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?>
    		</h2>

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Thanks very much!

    Great, glad you’re now sorted !

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Linking posts to pages’ is closed to new replies.