get rid of the arrow in previous_post_link?

How can I hide or disable this « sign in front of previous_post_link?
I can’t find it anywhere – it only shows up on the generated page.

This is the code I am using:

Read More
    <?php
        $nextPost = get_next_post();
        $nextthumbnail = get_the_post_thumbnail($nextPost->ID);
        next_post_link('%link',''.$nextthumbnail.'');
        $next_value = get_post_meta( $nextPost->ID, 'subtext', $single = true);

?>

Thank you!

Related posts

Leave a Reply

2 comments

  1. You can define whatever you want. You can wrap %link (the actual link to the post) the way you like it most:

    <?php next_post_link( '<strong>%link</strong>' ); ?>