gozzle
Forum Replies Created
-
@sterndata – I do not know why you deleted my post. I was responding to a post in this thread and not posting a similar problem (which would warrant a new thread) as you accused me of.
My questions was to clarify the response given in post #5, which didn’t work for me. It would also be interesting for future searchers to be aware that the solution, as described, might not work for them.
My response was in direct contrast to post #6, where the user was able to use the method as described.
Incidentally, I found a solution on the following web-site, which worked for me:
I chose to use the “Edit functions.php” solution.
- This reply was modified 5 years, 7 months ago by gozzle.
Forum: Fixing WordPress
In reply to: rendering pages & the_contentOk, let me try. I’ll report back.
Thanks again Steve
Martin
Forum: Fixing WordPress
In reply to: rendering pages & the_contentThanks Steve. How do I reference the post object?
Forum: Fixing WordPress
In reply to: rendering pages & the_contentAfter the header, all that’s rendering on the actual page is:
<div id=”content” class=”narrowcolumn”>
<div class=”post” id=”post-29″>
<h2>1) How it all started…..</h2>
<div class=”entry”>nothing more….
Where should I start investigating?
Any help gratefully received.
Best regards,
Martin
Forum: Fixing WordPress
In reply to: rendering pages & the_contentSo it’s a server side problem and not a WP problem?
Forum: Fixing WordPress
In reply to: rendering pages & the_contentHi Steve, the page.php file is so small, I can paste it here:
<?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 »</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> <?php get_sidebar(); ?> <?php get_footer(); ?>Or do you mean another .php file?
- This reply was modified 8 years, 2 months ago by Steven Stern (sterndata). Reason: put code in backticks
Forum: Fixing WordPress
In reply to: rendering pages & the_contentHi Steve,
Exactly the same, unfortunately.
Any other ideas?
Thanks.
Goz