presspass
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: Where are my posts located?Forum: Fixing WordPress
In reply to: 500 page request error: ?page_id=2 wp_list_pagesCurrent solution: paste header code inside of page.php. If you have a better solution, please let me know.
Forum: Fixing WordPress
In reply to: 500 page request error: ?page_id=2 wp_list_pagesIs the function get_header() available for use inside of page.php?
Forum: Fixing WordPress
In reply to: 500 page request error: ?page_id=2 wp_list_pagesThis is a copy of my page.php file. Do you see any possible locations for parse errors?
<?php get_header(); ?> <div id="contentUpper"> <div class="contentWrapper"> <div class="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <!--<h1 class="pagetitle">< ?php //the_title(); ?></h1>--> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> </div> </div> <?php include (TEMPLATEPATH . '/sidebarLower.php'); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: 500 page request error: ?page_id=2 wp_list_pagesFollowup: page.php will not display inside of my new theme
COMMENTS.
1. My “page.php” file will display inside the default template folder
2. Default theme file “page.php” is viewable w/i its folder, but not viewable in my new theme’s folder.
HELP!
Links to solutions, ideas, wordpress adventure stories or a suggestion would be appreciated.
Forum: Fixing WordPress
In reply to: 500 page request error: ?page_id=2 wp_list_pages# 8211 ;
Forum: Fixing WordPress
In reply to: 500 page request error: ?page_id=2 wp_list_pagesNote where “before =- “, the ascii for ? didn’t make it to my post. Replace – with “–”
Viewing 7 replies - 1 through 7 (of 7 total)