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:
<?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!
Just copy your
next_post_link
:Per the codex page, the first parameter specifies what will we be shown (thanks Chip!)
You can define whatever you want. You can wrap
%link
(the actual link to the post) the way you like it most: