| [ Root ] [ Search ] [ Index ] |
PHP Cross Reference of WordPress MU 2.9.2Provided by Yoast |
[Summary view] [Print] [Text view]
1 <?php 2 // Users 3 add_filter ( 'wpmu_validate_user_signup', 'signup_nonce_check' ); 4 add_action ( 'init', 'maybe_add_existing_user_to_blog' ); 5 add_filter ( 'xmlrpc_methods', 'attach_wpmu_xmlrpc' ); 6 add_filter ( 'wp_authenticate_user', 'wordpressmu_authenticate_siteadmin', 10, 2 ); 7 add_action ( 'wpmu_new_user', 'newuser_notify_siteadmin' ); 8 add_action ( 'wpmu_activate_user', 'add_new_user_to_blog', 10, 3 ); 9 add_action ( 'sanitize_user', 'strtolower_usernames', 10, 3 ); 10 11 // Blogs 12 add_filter ( 'wpmu_validate_blog_signup', 'signup_nonce_check' ); 13 add_action ( 'wpmu_new_blog', 'wpmu_log_new_registrations', 10, 2 ); 14 add_action ( 'wpmu_new_blog', 'newblog_notify_siteadmin', 10, 2 ); 15 16 // Register Nonce 17 add_action ( 'signup_hidden_fields', 'signup_nonce_fields' ); 18 19 // Locale 20 add_filter ( 'locale', 'mu_locale' ); 21 22 // Template 23 add_action ( 'template_redirect', 'maybe_redirect_404' ); 24 add_filter ( 'allowed_redirect_hosts', 'redirect_this_site' ); 25 26 // Administration 27 add_filter ( 'mce_buttons_2', 'remove_tinymce_media_button' ); 28 add_filter ( 'term_id_filter', 'global_terms', 10, 2 ); 29 add_action ( 'publish_post', 'update_posts_count' ); 30 add_action ( 'delete_post', 'wpmu_update_blogs_date' ); 31 add_action ( 'private_to_published', 'wpmu_update_blogs_date' ); 32 add_action ( 'publish_phone', 'wpmu_update_blogs_date' ); 33 add_action ( 'publish_post', 'wpmu_update_blogs_date' ); 34 35 // Files 36 add_filter ( 'wp_upload_bits', 'upload_is_file_too_big' ); 37 add_filter ( 'import_upload_size_limit', 'fix_import_form_size' ); 38 add_filter ( 'upload_mimes', 'check_upload_mimes' ); 39 40 // Mail 41 add_filter ( 'wp_mail_from', 'wordpressmu_wp_mail_from' ); 42 43 44 add_action( "phpmailer_init", "fix_phpmailer_messageid" ); 45 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon May 3 12:25:32 2010 | Cross-referenced by PHPXref 0.7 |