How to change the "Read more" link?

Hi,

Take a look at the following page:-

http://www.xinfu.com/

Look at the “Global news & Blog” box. You can see that i am pulling out the first story from the latest blog. However i want to change the “Read more” link to say something else. I dont know where and how this is done. I am using the following code:-


		<?php
        require('blog/wp-blog-header.php');

        $iNumberOfPosts = 0;
        while ($iNumberOfPosts < 1 && have_posts()) : the_post('showposts=1'); ?>

        <strong id="post-<?php the_ID(); ?>">

        <a href="<?php the_permalink() ?>" rel="bookmark" style="float:none" title="Permalink to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong>
        <br/>
	    <span><?php content('40'); ?></span>
        <span><?php the_time('j F Y') ?><br/></span>
		</em>
        <br/>
        <?php $iNumberOfPosts++; ?>
        <?php endwhile; ?>

Where can i change the name of the link? I want it to say “View our blog”…

Hope someone can help…

Regards
Billy

Find this function

<span><?php content('40'); ?></span>

Post the code for the content() function.

It might be in teh wp-blog-header.php that you included, or it might be in another included file…or it might be declared higher up in the code :slight_smile:

Have a look at http://codex.wordpress.org/Customizing_the_Read_More
It should help.