• Hello,

    I am trying to create stand alone pages that are not inserted as tabs or posts onto my blog. Is there a way to do this? How?

    Thank You.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    You can create pages. Then you have to exclude them from the code that causes the site’s pages to be displayed on the menu.

    usually the code is wp_list_pages() and there will be some code between the parentheses. You must find the id of the pages you wish to exclude.
    if your wp_list_pages looks like this, for example

    wp_list_pages(‘sort_column=menu_order&title_li=’) then add this to that line

    wp_list_pages(‘sort_column=menu_order&title_li=&exclude=12,17,27,43’)

    where 12, 17, 27, 43 are the page id’s for the pages you don’t want on the menu tabs.

    To find the page ID, go to Manage Pages in the admin area. Point at the title of a page, and while holding the mouse there, look at your browser’s status line in the lower left corner of the browser window. You will see a URL for that page, and the last thing in the URL will be the page’s ID #.

    Thread Starter dozierdd

    (@dozierdd)

    worked great. thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I create Individual Stand Alone Pages?’ is closed to new replies.