]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/default-filters.php
Wordpress 2.7.1
[autoinstalls/wordpress.git] / wp-includes / default-filters.php
index 011a1ed4be8fe1e141140c875ed982818d3171fc..594937aa04bf677644647b745fd400e7685a9b97 100644 (file)
@@ -155,8 +155,12 @@ add_filter('pre_comment_content', 'wp_rel_nofollow', 15);
 add_filter('comment_email', 'antispambot');
 add_filter('option_tag_base', '_wp_filter_taxonomy_base');
 add_filter('option_category_base', '_wp_filter_taxonomy_base');
+add_filter( 'the_posts', '_close_comments_for_old_posts' );
+add_filter( 'comments_open', '_close_comments_for_old_post', 10, 2 );
+add_filter( 'pings_open', '_close_comments_for_old_post', 10, 2 );
+add_filter( 'editable_slug', 'urldecode' );
 
-//Atom SSL support
+// Atom SSL support
 add_filter('atom_service_url','atom_service_url_filter');
 
 // Actions
@@ -165,6 +169,7 @@ add_action('wp_head', 'wlwmanifest_link');
 add_action('wp_head', 'locale_stylesheet');
 add_action('publish_future_post', 'check_and_publish_future_post', 10, 1);
 add_action('wp_head', 'noindex', 1);
+add_action('wp_head', 'wp_print_styles', 9);
 add_action('wp_head', 'wp_print_scripts');
 add_action('wp_head', 'wp_generator');
 if(!defined('DOING_CRON'))
@@ -192,5 +197,6 @@ add_action('comment_form', 'wp_comment_form_unfiltered_html_nonce');
 add_action('template_redirect', 'wp_old_slug_redirect');
 add_action('edit_post', 'wp_check_for_changed_slugs');
 add_action('edit_form_advanced', 'wp_remember_old_slug');
+add_action('init', '_show_post_preview');
 
 ?>