Advertisement
alchymyth

Untitled

Mar 25th, 2011
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. if (!function_exists('get_previous_post_link')) {
  2.         function get_previous_post_link($label)
  3.         {
  4.                 ob_start();
  5.                 previous_post_link($label);
  6.                 return ob_get_clean();
  7.         }
  8. }
  9.  
  10. if (!function_exists('get_next_post_link')) {
  11.         function get_next_post_link($label)
  12.         {
  13.                 ob_start();
  14.                 next_post_link($label);
  15.                 return ob_get_clean();
  16.         }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement