• WordPress newbie. Having problems rewording the content tag so that it reads “Read More>” not “Read the rest of the entry”. I’ve cleared the cache. Here’s the coding in the index.php inside the loop.

    <?php the_content(‘<span class=”readmore”>’.__(‘Read more »’,TEMPLATE_DOMAIN).'</span>’); ?>.

    This coding still results in “Read the rest of the entry”.
    Is the inclusion of TEMPLATE_DOMAIN part of the problem. Not really sure what this mean. The template I’m using is Freshy-10 by Jide. Thanks for any help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m not sure why it’s written like that, but this is what I use in my themes:

    <?php the_content(__('<strong>Read more...</strong>')); ?>

    Strange.
    I’m using the same Theme (Freshy-10) and I’m trying to find the CSS entry to change the post’s font (currently Verdana) and the font size (currently size=11).

    The code in index.php reads:
    <div class="entry">

    <?php the_content('<span class="readmore">'.__('Read the rest of this entry &raquo;',TEMPLATE_DOMAIN).'</span>'); ?>

    </div>

    But the source code in my IE reads:
    <div class="entry">
    <span style="font-size: 11pt; font-family: Verdana">...the text of my post...

    Any ideas anyone?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Content Tag Problems’ is closed to new replies.