]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/default-filters.php
Wordpress 3.0.6
[autoinstalls/wordpress.git] / wp-includes / default-filters.php
1 <?php
2 /**
3  * Sets up the default filters and actions for most
4  * of the WordPress hooks.
5  *
6  * If you need to remove a default hook, this file will
7  * give you the priority for which to use to remove the
8  * hook.
9  *
10  * Not all of the default hooks are found in default-filters.php
11  *
12  * @package WordPress
13  */
14
15 // Strip, trim, kses, special chars for string saves
16 foreach ( array( 'pre_term_name', 'pre_comment_author_name', 'pre_link_name', 'pre_link_target', 'pre_link_rel', 'pre_user_display_name', 'pre_user_first_name', 'pre_user_last_name', 'pre_user_nickname' ) as $filter ) {
17         add_filter( $filter, 'sanitize_text_field'  );
18         add_filter( $filter, 'wp_filter_kses'       );
19         add_filter( $filter, '_wp_specialchars', 30 );
20 }
21
22 // Strip, kses, special chars for string display
23 foreach ( array( 'term_name', 'comment_author_name', 'link_name', 'link_target', 'link_rel', 'user_display_name', 'user_first_name', 'user_last_name', 'user_nickname' ) as $filter ) {
24         add_filter( $filter, 'sanitize_text_field'  );
25         add_filter( $filter, 'wp_kses_data'       );
26         add_filter( $filter, '_wp_specialchars', 30 );
27 }
28
29 // Kses only for textarea saves
30 foreach ( array( 'pre_term_description', 'pre_link_description', 'pre_link_notes', 'pre_user_description' ) as $filter ) {
31         add_filter( $filter, 'wp_filter_kses' );
32 }
33
34 // Kses only for textarea admin displays
35 foreach ( array( 'term_description', 'link_description', 'link_notes', 'user_description' ) as $filter ) {
36         add_filter( $filter, 'wp_kses_data' );
37 }
38 if ( is_admin() )
39         add_filter( 'comment_text', 'wp_kses_post' );
40
41 // Email saves
42 foreach ( array( 'pre_comment_author_email', 'pre_user_email' ) as $filter ) {
43         add_filter( $filter, 'trim'           );
44         add_filter( $filter, 'sanitize_email' );
45         add_filter( $filter, 'wp_filter_kses' );
46 }
47
48 // Email display
49 foreach ( array( 'comment_author_email', 'user_email' ) as $filter ) {
50         add_filter( $filter, 'sanitize_email' );
51         add_filter( $filter, 'wp_kses_data' );
52 }
53
54 // Save URL
55 foreach ( array( 'pre_comment_author_url', 'pre_user_url', 'pre_link_url', 'pre_link_image',
56         'pre_link_rss' ) as $filter ) {
57         add_filter( $filter, 'wp_strip_all_tags' );
58         add_filter( $filter, 'esc_url_raw'       );
59         add_filter( $filter, 'wp_filter_kses'    );
60 }
61
62 // Display URL
63 foreach ( array( 'user_url', 'link_url', 'link_image', 'link_rss', 'comment_url' ) as $filter ) {
64         add_filter( $filter, 'wp_strip_all_tags' );
65         add_filter( $filter, 'esc_url'           );
66         add_filter( $filter, 'wp_kses_data'    );
67 }
68
69 // Slugs
70 foreach ( array( 'pre_term_slug' ) as $filter ) {
71         add_filter( $filter, 'sanitize_title' );
72 }
73
74 // Keys
75 foreach ( array( 'pre_post_type' ) as $filter ) {
76         add_filter( $filter, 'sanitize_user' );
77 }
78 foreach ( array( 'pre_post_status', 'pre_post_comment_status', 'pre_post_ping_status' ) as $filter ) {
79         add_filter( $filter, 'sanitize_key' );
80 }
81
82 // Places to balance tags on input
83 foreach ( array( 'content_save_pre', 'excerpt_save_pre', 'comment_save_pre', 'pre_comment_content' ) as $filter ) {
84         add_filter( $filter, 'balanceTags', 50 );
85 }
86
87 // Format strings for display.
88 foreach ( array( 'comment_author', 'term_name', 'link_name', 'link_description', 'link_notes', 'bloginfo', 'wp_title', 'widget_title' ) as $filter ) {
89         add_filter( $filter, 'wptexturize'   );
90         add_filter( $filter, 'convert_chars' );
91         add_filter( $filter, 'esc_html'      );
92 }
93
94 // Format WordPress
95 foreach ( array( 'the_content', 'the_title', 'comment_text' ) as $filter )
96         add_filter( $filter, 'capital_P_dangit', 11 );
97
98 // Format titles
99 foreach ( array( 'single_post_title', 'single_cat_title', 'single_tag_title', 'single_month_title', 'nav_menu_attr_title', 'nav_menu_description' ) as $filter ) {
100         add_filter( $filter, 'wptexturize' );
101         add_filter( $filter, 'strip_tags'  );
102 }
103
104 // Format text area for display.
105 foreach ( array( 'term_description' ) as $filter ) {
106         add_filter( $filter, 'wptexturize'      );
107         add_filter( $filter, 'convert_chars'    );
108         add_filter( $filter, 'wpautop'          );
109         add_filter( $filter, 'shortcode_unautop');
110 }
111
112 // Format for RSS
113 foreach ( array( 'term_name_rss' ) as $filter ) {
114         add_filter( $filter, 'convert_chars' );
115 }
116
117 // Display filters
118 add_filter( 'the_title', 'wptexturize'   );
119 add_filter( 'the_title', 'convert_chars' );
120 add_filter( 'the_title', 'trim'          );
121
122 add_filter( 'the_content', 'wptexturize'        );
123 add_filter( 'the_content', 'convert_smilies'    );
124 add_filter( 'the_content', 'convert_chars'      );
125 add_filter( 'the_content', 'wpautop'            );
126 add_filter( 'the_content', 'shortcode_unautop'  );
127 add_filter( 'the_content', 'prepend_attachment' );
128
129 add_filter( 'the_excerpt',     'wptexturize'      );
130 add_filter( 'the_excerpt',     'convert_smilies'  );
131 add_filter( 'the_excerpt',     'convert_chars'    );
132 add_filter( 'the_excerpt',     'wpautop'          );
133 add_filter( 'the_excerpt',     'shortcode_unautop');
134 add_filter( 'get_the_excerpt', 'wp_trim_excerpt'  );
135
136 add_filter( 'comment_text', 'wptexturize'            );
137 add_filter( 'comment_text', 'convert_chars'          );
138 add_filter( 'comment_text', 'make_clickable',      9 );
139 add_filter( 'comment_text', 'force_balance_tags', 25 );
140 add_filter( 'comment_text', 'convert_smilies',    20 );
141 add_filter( 'comment_text', 'wpautop',            30 );
142
143 add_filter( 'comment_excerpt', 'convert_chars' );
144
145 add_filter( 'list_cats',         'wptexturize' );
146 add_filter( 'single_post_title', 'wptexturize' );
147
148 add_filter( 'wp_sprintf', 'wp_sprintf_l', 10, 2 );
149
150 // RSS filters
151 add_filter( 'the_title_rss',      'strip_tags'      );
152 add_filter( 'the_title_rss',      'ent2ncr',      8 );
153 add_filter( 'the_title_rss',      'esc_html'        );
154 add_filter( 'the_content_rss',    'ent2ncr',      8 );
155 add_filter( 'the_excerpt_rss',    'convert_chars'   );
156 add_filter( 'the_excerpt_rss',    'ent2ncr',      8 );
157 add_filter( 'comment_author_rss', 'ent2ncr',      8 );
158 add_filter( 'comment_text_rss',   'ent2ncr',      8 );
159 add_filter( 'comment_text_rss',   'esc_html'        );
160 add_filter( 'bloginfo_rss',       'ent2ncr',      8 );
161 add_filter( 'the_author',         'ent2ncr',      8 );
162
163 // Misc filters
164 add_filter( 'option_ping_sites',    'privacy_ping_filter'                 );
165 add_filter( 'option_blog_charset',  '_wp_specialchars'                    ); // IMPORTANT: This must not be wp_specialchars() or esc_html() or it'll cause an infinite loop
166 add_filter( 'option_home',          '_config_wp_home'                     );
167 add_filter( 'option_siteurl',       '_config_wp_siteurl'                  );
168 add_filter( 'tiny_mce_before_init', '_mce_set_direction'                  );
169 add_filter( 'pre_kses',             'wp_pre_kses_less_than'               );
170 add_filter( 'sanitize_title',       'sanitize_title_with_dashes'          );
171 add_action( 'check_comment_flood',  'check_comment_flood_db',       10, 3 );
172 add_filter( 'comment_flood_filter', 'wp_throttle_comment_flood',    10, 3 );
173 add_filter( 'pre_comment_content',  'wp_rel_nofollow',              15    );
174 add_filter( 'comment_email',        'antispambot'                         );
175 add_filter( 'option_tag_base',      '_wp_filter_taxonomy_base'            );
176 add_filter( 'option_category_base', '_wp_filter_taxonomy_base'            );
177 add_filter( 'the_posts',            '_close_comments_for_old_posts'       );
178 add_filter( 'comments_open',        '_close_comments_for_old_post', 10, 2 );
179 add_filter( 'pings_open',           '_close_comments_for_old_post', 10, 2 );
180 add_filter( 'editable_slug',        'urldecode'                           );
181 add_filter( 'nav_menu_meta_box_object', '_wp_nav_menu_meta_box_object'    );
182
183 // Atom SSL support
184 add_filter( 'atom_service_url','atom_service_url_filter' );
185
186 // Actions
187 add_action( 'wp_head',             'wp_enqueue_scripts',            1     );
188 add_action( 'wp_head',             'feed_links',                    2     );
189 add_action( 'wp_head',             'feed_links_extra',              3     );
190 add_action( 'wp_head',             'rsd_link'                             );
191 add_action( 'wp_head',             'wlwmanifest_link'                     );
192 add_action( 'wp_head',             'index_rel_link'                       );
193 add_action( 'wp_head',             'parent_post_rel_link',          10, 0 );
194 add_action( 'wp_head',             'start_post_rel_link',           10, 0 );
195 add_action( 'wp_head',             'adjacent_posts_rel_link_wp_head', 10, 0 );
196 add_action( 'wp_head',             'locale_stylesheet'                    );
197 add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 );
198 add_action( 'wp_head',             'noindex',                       1     );
199 add_action( 'wp_head',             'wp_print_styles',               8     );
200 add_action( 'wp_head',             'wp_print_head_scripts',         9     );
201 add_action( 'wp_head',             'wp_generator'                         );
202 add_action( 'wp_head',             'rel_canonical'                        );
203 add_action( 'wp_footer',           'wp_print_footer_scripts'              );
204 add_action( 'wp_head',             'wp_shortlink_wp_head',          10, 0 );
205 add_action( 'template_redirect',   'wp_shortlink_header',           11, 0 );
206
207 // Feed Generator Tags
208 foreach ( array( 'rss2_head', 'commentsrss2_head', 'rss_head', 'rdf_header', 'atom_head', 'comments_atom_head', 'opml_head', 'app_head' ) as $action ) {
209         add_action( $action, 'the_generator' );
210 }
211
212 // WP Cron
213 if ( !defined( 'DOING_CRON' ) )
214         add_action( 'sanitize_comment_cookies', 'wp_cron' );
215
216 // 2 Actions 2 Furious
217 add_action( 'do_feed_rdf',                'do_feed_rdf',             10, 1 );
218 add_action( 'do_feed_rss',                'do_feed_rss',             10, 1 );
219 add_action( 'do_feed_rss2',               'do_feed_rss2',            10, 1 );
220 add_action( 'do_feed_atom',               'do_feed_atom',            10, 1 );
221 add_action( 'do_pings',                   'do_all_pings',            10, 1 );
222 add_action( 'do_robots',                  'do_robots'                      );
223 add_action( 'sanitize_comment_cookies',   'sanitize_comment_cookies'       );
224 add_action( 'admin_print_scripts',        'print_head_scripts',      20    );
225 add_action( 'admin_print_footer_scripts', 'print_footer_scripts',    20    );
226 add_action( 'admin_print_styles',         'print_admin_styles',      20    );
227 add_action( 'init',                       'smilies_init',             5    );
228 add_action( 'plugins_loaded',             'wp_maybe_load_widgets',    0    );
229 add_action( 'plugins_loaded',             'wp_maybe_load_embeds',     0    );
230 add_action( 'shutdown',                   'wp_ob_end_flush_all',      1    );
231 add_action( 'pre_post_update',            'wp_save_post_revision'          );
232 add_action( 'publish_post',               '_publish_post_hook',       5, 1 );
233 add_action( 'save_post',                  '_save_post_hook',          5, 2 );
234 add_action( 'transition_post_status',     '_transition_post_status',  5, 3 );
235 add_action( 'comment_form', 'wp_comment_form_unfiltered_html_nonce'        );
236 add_action( 'wp_scheduled_delete',        'wp_scheduled_delete'            );
237
238 // Navigation menu actions
239 add_action( 'delete_post',                '_wp_delete_post_menu_item'      );
240 add_action( 'delete_term',                '_wp_delete_tax_menu_item'       );
241 add_action( 'transition_post_status', '_wp_auto_add_pages_to_menu',  10, 3 );
242
243 // Post Thumbnail CSS class filtering
244 add_action( 'begin_fetch_post_thumbnail_html', '_wp_post_thumbnail_class_filter_add'    );
245 add_action( 'end_fetch_post_thumbnail_html',   '_wp_post_thumbnail_class_filter_remove' );
246
247 // Redirect Old Slugs
248 add_action( 'template_redirect', 'wp_old_slug_redirect'              );
249 add_action( 'post_updated',      'wp_check_for_changed_slugs', 12, 3 );
250
251 // Nonce check for Post Previews
252 add_action( 'init', '_show_post_preview' );
253
254 // Timezone
255 add_filter( 'pre_option_gmt_offset','wp_timezone_override_offset' );
256
257 // Admin Color Schemes
258 add_action( 'admin_init', 'register_admin_color_schemes', 1);
259 add_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );
260
261 ?>