is_single; echo '
'; echo '
'; $first_comic = get_first_comic_permalink(); if ($first_comic != get_permalink()) { echo '  '; } else { echo ' At First'; } $wp_query->is_single = true; $prev_comic = get_permalink(get_adjacent_post(true, '', true)); if (!empty($prev_comic) && (get_permalink() != $first_comic)) { echo '  '; } else { echo ' No Previous'; } $wp_query->is_single = $temp_single; echo '
'; echo '
'; $last_comic = get_last_comic_permalink(); if ($last_comic != get_permalink()) { echo '  '; } else { echo ' No Last'; } $next_comic = get_permalink(get_adjacent_post(true, '', false)); if (!empty($next_comic) && (get_permalink() != $last_comic)) { echo '  '; } else { echo ' No Next'; } echo '
'; echo '
'; echo '
'; $wp_query = $temp_query; $wp_query->is_single = $temp_single; $post = $temp_post; $temp_post = null; $temp_query = null; $temp_single = null; } ?>