Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_filter( 'template_include', 'template_comment_paginated' );
  2. function template_comment_paginated( $template )
  3. {
  4. if ( (int) get_query_var( 'cpage' ) > 0 &&
  5. false !== ( $_template = str_replace( '.php', '-paged.php', $template ) ) &&
  6. file_exists( $_template ) )
  7. {
  8. return $_template;
  9. }
  10. return $template;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement