Advertisement
alchymyth

Untitled

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