Forum Replies Created

Viewing 6 replies - 16 through 21 (of 21 total)
  • Thread Starter Gemma017

    (@gemma017)

    Sorry, the above should read <a href="http://thecatswhiskers.nl/?p=46">Read more ...</a>

    Thread Starter Gemma017

    (@gemma017)

    I 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.

    Thread Starter Gemma017

    (@gemma017)

    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.

    Thread Starter Gemma017

    (@gemma017)

    Okay …

    Thread Starter Gemma017

    (@gemma017)

    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 &raquo;</p>'); ?>
    
    				<div class="clearer">&nbsp;</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 Footer
    Thread Starter Gemma017

    (@gemma017)

    Thanks, everyone! Really great to hear from you all.

Viewing 6 replies - 16 through 21 (of 21 total)