Get only the path from a function like previous_post_link
Add following function in your functions.php file. function custom_post_link($format, $link, $in_same_cat = false, $excluded_categories=””, $previous = true) { if ( $previous && is_attachment() ) $post = & get_post($GLOBALS[‘post’]->post_parent); else $post = get_adjacent_post($in_same_cat, $excluded_categories, $previous); if ( !$post ) return; $link = get_permalink($post); $format = str_replace(‘%link’, $link, $format); $adjacent = $previous ? ‘previous’ : ‘next’; echo … Read more