Hi,
Take a look at the following page:-
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