• Im wondering, how can I add a read more link at the bottom of my posts? I only want like a paragraph to be displayed instead of the whole article.. Any ideas?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Add,

    <!--more-->

    where you want the break to occure.

    Thread Starter omniboggle

    (@omniboggle)

    Oh, alright! thanks. is there a way to change the text though? I want it just to say: read more not the whole topic title..

    That text is placed there by the template. So I guess you need to go template/theme hacking…

    Just noticed myself that the actual wording of the text is inconsistent depending if I view the post on the main page or in an archive or category page.

    In your theme, look for the call to the the_content() function and set the text you want there. I did this:

    <?php the_content('<span class="more">Read more >></span>'); ?>

    BTW: You don’t need to enclose the text in a <span> tag and if you do, your classname may be different anyway.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to add a Read More link..’ is closed to new replies.