Title: Adding New Pages
Last modified: August 18, 2016

---

# Adding New Pages

 *  [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/)
 * How do I create pages? If I try to make them using WordPress, then how would 
   I add my menu?
 * If I try to make them manually, copy and pasting all that code in index.php to
   other page files, I get an error.
 * Please have a look at my site here: [http://xeenat.com/wordpress](http://xeenat.com/wordpress)
 * Having a really hard time with WordPress. 😛 >.<
 * Any help will be greatly appreciated. Thank you.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/adding-new-pages/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/adding-new-pages/page/2/?output_format=md)

 *  [Cypher](https://wordpress.org/support/users/cypher/)
 * (@cypher)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223187)
 * In the Admin section go to Write->Pages.
 * Here is where you create pages. Choose post-slugs that are descriptive of the
   page, such as “archives”, “contact me” and so on. When you create them, WordPress
   will automatically update your .htaccess file to allow access to them.
 * In your template for the menu, you would then just reference <yourdoamin.com>/
   archives or <yourdomain.com>/about and so on.
 * Visit [http://codex.wordpress.org/pages](http://codex.wordpress.org/pages) for
   more details.
 * And in general [http://codex.wordpress.org](http://codex.wordpress.org) is the
   best place to start off in learning the basics of WP.
 * Regards
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223194)
 * Sorry, but what are post-slugs? There is a page-slug option. And I don’t get 
   the <yourdomain.com> part?
 * Sorry, I’m new to PHP and WordPress. 🙁
 *  [Kafkaesqui](https://wordpress.org/support/users/kafkaesqui/)
 * (@kafkaesqui)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223248)
 * A post or Page slug is basically the same: the title of a post or Page in a format
   for use in the url. In WordPress there are two types of permalinks (links to 
   specific content in your blog) you can have: the default, which would be something
   like index.php?p=10, or custom “cruft-free,” [“pretty” permalinks](http://codex.wordpress.org/Introduction_to_Blogging#Pretty_Permalinks),
   which make use of elements like the ‘slugs’ to provide a more human-readable 
   link.
 * By <yourdomain.com> Cypher means your web site address: [http://xeenat.com/](http://xeenat.com/).
   In other words, your domain.
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223257)
 * Okay. I made a page for the site. It’s called “Designs.” Please take a look over
   here : [http://www.xeenat.com/wordpress/?page_id=9](http://www.xeenat.com/wordpress/?page_id=9)
 * Cypher says that add [http://xeenat.com/thelink](http://xeenat.com/thelink) in
   my template menu. But that template is in the index.php file.
 * There is no file for this particular “Designs” page so how would I add the menu?
 * Take a look at this site : [http://ganai.com](http://ganai.com). He’s a friend
   of mine and he said that all his other pages are made using Notepad instead of
   WP except for the Index page. When I try to do that, I get an error.
 * Can’t I do that? Wouldn’t that be easier? :S
 * Thank you…
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223260)
 * Your theme is based on the Default (Kubrick) which doesn’t have sidebar (menu)
   in the page template.
    Open the `header.php` file of your blog and find this 
   line: `<?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments)&&(!
   is_single()) && (! is_page())) { ?>` delete the part referring to pages: `&& (!
   is_page())` and you’ll have a sidebar on your Pages.
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223285)
 * [http://xeenat.com/wordpress](http://xeenat.com/wordpress)
 * I am talking about the horziontal menu. The brown colored one. Not the sidebar
   menus.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223382)
 * How did you insert it into your index.php (main template)? Do the same for the
   page.php.
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223494)
 * Moshu, you are god! One more question, now how do I make it so it displays on
   the comments page?
 * Thank you so much for your help. This is site is really coming along. Thank you.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223496)
 * For the “comments page” – correctly: _single.php_ – do the same in single.php
   as you did for the Page template.
    And repeat it in the `archive.php` for the
   monthly archives. (Warning: there is another file with a similar name – `archives.
   php` – do NOT touch that one; only the one with the “singular” name 🙂
 * Edit. I know it’s too late for this, but maybe for your next theme you should
   read [this](http://www.transycan.net/wp/archives/2005/03/31/visual-anatomy-of-a-wp-15-theme/)
   to understand which template is used for different views 🙂
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223550)
 * Thanks Moshu. 🙂 Thank you very much for your help. 🙂
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223571)
 * Moshu or if anyone else knows, how do I get rid of the “Xeenat Blog” text on 
   the header? I do want it so it displays in everyone’s Browser Window, but I don’t
   want it on my header image? And it’s in the footer also?
 * How do I get rid of it? And is there any way I can have individual titles for
   the different pages? If not, then it’s perfectly fine. 🙂
 * This was a page related problem so I’m not starting a new thread.
 * Thank you.
 *  [moshu](https://wordpress.org/support/users/moshu/)
 * (@moshu)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223619)
 * The [template tags](http://codex.wordpress.org/Template_Tags) in WP have pretty
   intuitive names!
    So, perusing your `header.php` will show you where do you want
   to keep the “bloginfo” stuff and where do you want to delete it. More details:
   [http://codex.wordpress.org/Template_Tags/bloginfo](http://codex.wordpress.org/Template_Tags/bloginfo)
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 11 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223661)
 * Thank you. It worked. 🙂
 * But on the comments page, I don’t want the “Blog Archive” part in the title. 
   How do I get ride of it? See here: [http://www.xeenat.com/wordpress/?p=6#comments](http://www.xeenat.com/wordpress/?p=6#comments)
 * Thanks.
 *  Thread Starter [bk](https://wordpress.org/support/users/bk/)
 * (@bk)
 * [20 years, 10 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223718)
 * *bumps*
 *  [mumkin](https://wordpress.org/support/users/mumkin/)
 * (@mumkin)
 * [20 years, 10 months ago](https://wordpress.org/support/topic/adding-new-pages/#post-223721)
 * What do you have in your header.php between the `<title>` tags?
 * See [http://codex.wordpress.org/Template_Tags/wp_title](http://codex.wordpress.org/Template_Tags/wp_title)
   for information on formatting page titles to your liking.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/adding-new-pages/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/adding-new-pages/page/2/?output_format=md)

The topic ‘Adding New Pages’ is closed to new replies.

 * 18 replies
 * 5 participants
 * Last reply from: [bk](https://wordpress.org/support/users/bk/)
 * Last activity: [20 years, 10 months ago](https://wordpress.org/support/topic/adding-new-pages/page/2/#post-223749)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
