Guest
Public paste!

Nicki

By: a guest | Dec 15th, 2008 | Syntax: None | Size: 0.22 KB | Hits: 188 | Expires: Never
Copy text to clipboard
  1. add_filter('comments_template', 'legacy_comments');
  2. function legacy_comments($file) {
  3.         if(!function_exists('wp_list_comments')) : // WP 2.7-only check
  4.                 $file = TEMPLATEPATH . '/legacy.comments.php';
  5.         endif;
  6.         return $file;
  7. }