matt_rix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Manage Users stills not showing upI deactivated all the plugins and checked it but still no luck.
Forum: Fixing WordPress
In reply to: Can’t Edit Timestamp in WP 2.5!Please tell me at which line to edit in both the lines. I am completely new to PHP and wordpress.
Forum: Fixing WordPress
In reply to: Manage Users not showing upIs that just me facing this problem or is there anybody else who is also facing this. If you are not able to know what actually is my problem reply me back i will explain it in detail.
Forum: Fixing WordPress
In reply to: How to change the submenuThat is because you don’t have any posts in the categories. Just add some posts in the categories you create and they will be automatically get listed there.
Forum: Fixing WordPress
In reply to: Page without sidebars<?php /* Template Name: FILENAME */ ?> <?php get_header(); ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this page » '); ?> <?php wp_link_pages(array('before' => '<strong>Pages:</strong> ', 'after' => ' ', 'next_or_number' => 'number')); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '', ' '); ?> </div> <?php get_footer(); ?>Forgot to include the page functions
Use this one. Just make sure you edit the DIV tags corresponding to your theme’s stylesheet.Forum: Fixing WordPress
In reply to: Page without sidebars<?php /* Template Name: FILENAME */ ?> <?php get_header(); ?> <div class="content">Content goes here...</div> <?php get_footer(); ?>Save this page as FILENAME.php and place it in your template directory. Now make a new page and select the page template as “FILENAME” (Edit filename as per your needs)
Forum: Fixing WordPress
In reply to: How to change the submenuThe menu refers to Page
Make new pages and they will be automatically get listed thereThe submenu refers to Categories.
All your categories will be listed there.