Dear All I am new to Wordpress but after 4-5 days of war with WP I am able to create my own theme and tested, working fine. I uploaded the image of the theme which I created. Now how can I create other pages of this site. I already created following pages- 1. style.css 2. header.php 3. index.php 4. footer.php Please check the uploaded txt files for code. But now I am stuck how can I create other pages and how to link them with the menu like - you all can see 4 link at the top - Top|Profile|contact Us Just I need guidance how to create page for these links and how to link those. Please guide me. Regrads to all
Pages in WP are controlled through the admin, not through the theme. To display a page menu there are two options: 1) The old-fashioned way, use wp_list_pages() to generate a menu automatically. This has the advantage that it's easy, but the disadvantage that a regular user can't change the order or exclude pages. 2) The newer way, using wp_nav_menu() to display a custom menu. The one disadvantage is that the menu has to be created manually in the admin but you can change the order of links, add specific pages and not others, link to other places such as individual posts, category pages or even external sites.
i have a suggestion for you. use default theme. then create blank pages like profile, contact, about us and so on. now use some "shortcode plugin" (try searching at wordpress.org) shortcode gives you flexibility to create boxes, columns, buttons, tabs and so on. i think with the help of shortcode and css one can replicate any theme.