Has anyone had a chance to look at this?
Hi dfgutzman
Please open the file raindrops/functions.php
find function below.
/**
* Article navigation
......
*/
if(!function_exists("raindrops_prev_next_post")){
function raindrops_prev_next_post($position = "nav-above"){
......
$html = '<div id="%1$s" class="%2$s"><span class="%3$s">';
printf($html,$position,"clearfix","nav-previous");
previous_post_link('%link','<span class="button"><span class="meta-nav">«</span> %title</span>');
$html = '</span><div class="%1$s">';
printf($html,"nav-next");
next_post_link('%link','<span class="button"> %title <span class="meta-nav">»</span></span>');
$html = '</div></div>';
printf($html);
}
}
and comment out like this
/*$html = '<div id="%1$s" class="%2$s"><span class="%3$s">';
printf($html,$position,"clearfix","nav-previous");
previous_post_link('%link','<span class="button"><span class="meta-nav">«</span> %title</span>');
$html = '</span><div class="%1$s">';
printf($html,"nav-next");
next_post_link('%link','<span class="button"> %title <span class="meta-nav">»</span></span>');
$html = '</div></div>';
printf($html);*/
I am sorry to be poor at English.
Thank you.
I am sorry, but the code above does not exist in the function.php file. Any other suggestions for where it could be located?
Please see Raindrops 0.938 functions.php
http://themes.svn.wordpress.org/raindrops/0.938/functions.php
See souce view line 1517.
Another way
Open style.css and add below style rules at last line.
#nav-below .nav-previous,
#nav-below .nav-next{
display:none;
}
Thank you