Gemma017
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts Having Links DisabledSorry, the above should read
<a href="http://thecatswhiskers.nl/?p=46">Read more ...</a>Forum: Fixing WordPress
In reply to: Posts Having Links DisabledI have pages to which I wanted to add links to posts that are relevant (= are tagged under the page heading).
I am adding a html link as in Read more …
only on updating the page, the link is rendered as
Read more …
That is to say, without the link. This means that if my visitors are interested in a topic, they cannot get any further than the page as all the posts have dead links.
Forum: Fixing WordPress
In reply to: Add Posts To Pages By Tag.I am so sorry to have asked the wrong question, Esmi. Your helpful pages haven’t really helped at all.
No doubt you are correct that I must create a custom page. That, no doubt seals the question and will be deemed solved thereby. I thankyou.
Forum: Fixing WordPress
In reply to: Add Posts To Pages By Tag.Okay …
Forum: Fixing WordPress
In reply to: Add Posts To Pages By Tag.Thanks, Esmi!
I am going to try that – in the mean time, this is the current page.php code:
<?php get_header(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="post_title"><h2><?php the_title(); ?></h2></div> <?php edit_post_link('Edit this page', '<div class="post_date">', '</div>'); ?> <div class="post_body"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <div class="clearer"> </div> </div> <?php wp_link_pages(array('before' => '<div class="post_meta archive_pagination"><strong>Pages:</strong> ', 'after' => '</div>', 'next_or_number' => 'number')); ?> </div> <?php endwhile; ?> <?php else : ?> <h2>Not Found</h2> <p>Sorry, but you are looking for something that isn't here.</p> <?php get_search_form(); ?> <?php endif; ?> <?php get_sidebar(); ?> <?php get_footer(); ?>What might I add just to get a list of posts under the initial text?
Forum: Plugins
In reply to: Plugin in FooterThanks, everyone! Really great to hear from you all.