-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp-hooks-hints.txt
executable file
·1725 lines (1725 loc) · 36.1 KB
/
wp-hooks-hints.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{$action}_prefilter
{$adjacent}_image_link
{$adjacent}_post_link
{$adjacent}_post_rel_link
{$boundary}_post_rel_link
{$field_no_prefix}_edit_pre
{$field_no_prefix}_save_pre
{$field}
{$field}_pre
{$hook}
{$new_status}_{$post->post_type}
{$old_status}_to_{$new_status}
{$option}
{$page_hook}
{$permastructname}_rewrite_rules
{$prefix}plugin_action_links
{$prefix}plugin_action_links_{$plugin_file}
{$tag}
{$taxonomy}_{$field}
{$taxonomy}_{$field}_rss
{$taxonomy}_add_form
{$taxonomy}_add_form_fields
{$taxonomy}_edit_form
{$taxonomy}_edit_form_fields
{$taxonomy}_pre_add_form
{$taxonomy}_pre_edit_form
{$taxonomy}_row_actions
{$taxonomy}_term_edit_form_tag
{$taxonomy}_term_new_form_tag
{$type}_send_to_editor_url
{$type}_template
{$type}_upload_iframe_src
activate_{$plugin}
activate_blog
activate_header
activate_plugin
activate_wp_head
activated_plugin
activity_box_end
add_{$meta_type}_meta
add_{$meta_type}_metadata
add_admin_bar_menus
add_attachment
add_category_form_pre
add_link
add_link_category_form_pre
add_menu_classes
add_meta_boxes
add_meta_boxes_{$post_type}
add_meta_boxes_comment
add_meta_boxes_link
add_option
add_option_{$option}
add_ping
add_signup_meta
add_site_option
add_site_option_{$option}
add_tag_form
add_tag_form_fields
add_tag_form_pre
add_term_relationship
add_user_role
add_user_to_blog
added_{$meta_type}_meta
added_existing_user
added_option
added_term_relationship
added_usermeta
additional_capabilities_display
admin_action_{$_REQUEST['action']}
admin_bar_init
admin_bar_menu
admin_body_class
admin_color_scheme_picker
admin_comment_types_dropdown
admin_enqueue_scripts
admin_footer
admin_footer_text
admin_footer-{$GLOBALS['hook_suffix']}
admin_footer-widgets.php
admin_head
admin_head_{$content_func}
admin_head-{$hook_suffix}
admin_head-media-upload-popup
admin_head-press-this.php
admin_init
admin_memory_limit
admin_menu
admin_notices
admin_page_access_denied
admin_post
admin_post_{$action}
admin_post_nopriv
admin_post_nopriv_{$action}
admin_post_thumbnail_html
admin_print_footer_scripts
admin_print_scripts
admin_print_scripts-{$hook_suffix}
admin_print_scripts-media-upload-popup
admin_print_scripts-press-this.php
admin_print_scripts-widgets.php
admin_print_styles
admin_print_styles-{$hook_suffix}
admin_print_styles-media-upload-popup
admin_print_styles-press-this.php
admin_print_styles-widgets.php
admin_title
admin_url
admin_xml_ns
adminmenu
after_db_upgrade
after_delete_post
after_menu_locations_table
after_mu_upgrade
after_plugin_row
after_plugin_row_{$plugin_file}
after_setup_theme
after_signup_form
after_switch_theme
after_theme_row
after_theme_row_{$stylesheet}
after_wp_tiny_mce
after-{$taxonomy}-table
ajax_query_attachments_args
all_admin_notices
all_plugins
all_themes
allow_dev_auto_core_updates
allow_major_auto_core_updates
allow_minor_auto_core_updates
allow_password_reset
allow_subdirectory_install
allowed_http_origin
allowed_http_origins
allowed_redirect_hosts
allowed_themes
archive_blog
async_update_translation
async_upload_{$type}
atom_author
atom_comments_ns
atom_enclosure
atom_entry
atom_head
atom_ns
attach_session_information
attachment_fields_to_edit
attachment_fields_to_save
attachment_icon
attachment_innerHTML
attachment_link
attachment_max_dims
attachment_submitbox_misc_actions
attachment_thumbnail_args
attachment_url_to_postid
attribute_escape
audio_submitbox_misc_sections
auth_cookie
auth_cookie_bad_hash
auth_cookie_bad_session_token
auth_cookie_bad_username
auth_cookie_expiration
auth_cookie_expired
auth_cookie_malformed
auth_cookie_valid
auth_post_meta_{$meta_key}
auth_redirect
auth_redirect_scheme
authenticate
author_email
author_feed_link
author_link
author_rewrite_rules
auto_core_update_email
auto_core_update_send_email
auto_update_{$type}
autocomplete_users_for_site_admins
automatic_updater_disabled
automatic_updates_complete
automatic_updates_debug_email
automatic_updates_is_vcs_checkout
automatic_updates_send_debug_email
avatar_defaults
before_delete_post
before_signup_form
before_wp_tiny_mce
begin_fetch_post_thumbnail_html
block_local_requests
blog_details
blog_option_{$option}
blog_privacy_selector
blog_redirect_404
bloginfo
bloginfo_rss
bloginfo_url
body_class
browse-happy-notice
bulk_actions-{$this->screen->id}
bulk_edit_custom_box
bulk_post_updated_messages
can_edit_network
cancel_comment_reply_link
category_css_class
category_description
category_feed_link
category_link
check_admin_referer
check_ajax_referer
check_comment_flood
check_is_user_spammed
check_password
check_passwords
clean_attachment_cache
clean_object_term_cache
clean_page_cache
clean_post_cache
clean_term_cache
clean_url
clear_auth_cookie
close_comments_for_post_types
comment_{$new_status}_{$comment->comment_type}
comment_{$old_status}_to_{$new_status}
comment_atom_entry
comment_author
comment_author_rss
comment_class
comment_closed
comment_cookie_lifetime
comment_duplicate_trigger
comment_edit_pre
comment_edit_redirect
comment_email
comment_excerpt
comment_feed_groupby
comment_feed_join
comment_feed_limits
comment_feed_orderby
comment_feed_where
comment_flood_filter
comment_flood_trigger
comment_form
comment_form_after
comment_form_after_fields
comment_form_before
comment_form_before_fields
comment_form_comments_closed
comment_form_default_fields
comment_form_defaults
comment_form_field_{$name}
comment_form_field_comment
comment_form_logged_in
comment_form_logged_in_after
comment_form_must_log_in_after
comment_form_submit_button
comment_form_submit_field
comment_form_top
comment_id_fields
comment_id_not_found
comment_link
comment_loop_start
comment_max_links_url
comment_moderation_headers
comment_moderation_recipients
comment_moderation_subject
comment_moderation_text
comment_notification_headers
comment_notification_notify_author
comment_notification_recipients
comment_notification_subject
comment_notification_text
comment_on_draft
comment_on_password_protected
comment_on_trash
comment_post
comment_post_redirect
comment_reply_link
comment_reply_link_args
comment_row_actions
comment_save_pre
comment_status_links
comment_text
comment_text_rss
comment_url
commentrss2_item
comments_array
comments_atom_head
comments_clauses
comments_link_feed
comments_number
comments_open
comments_per_page
comments_popup_link_attributes
comments_rewrite_rules
comments_template
commentsrss2_head
content_url
contextual_help
contextual_help_list
core_upgrade_preamble
core_version_check_locale
create_{$taxonomy}
create_term
created_{$taxonomy}
created_term
cron_request
cron_schedules
current_screen
current_theme_supports-{$feature}
custom_header_options
custom_menu_order
customize_allowed_urls
customize_control_active
customize_controls_enqueue_scripts
customize_controls_init
customize_controls_print_footer_scripts
customize_controls_print_scripts
customize_controls_print_styles
customize_dynamic_setting_args
customize_dynamic_setting_class
customize_panel_active
customize_preview_{$this->id}
customize_preview_{$this->type}
customize_preview_init
customize_refresh_nonces
customize_register
customize_render_control
customize_render_control_{$this->id}
customize_render_panel
customize_render_panel_{$this->id}
customize_render_section
customize_render_section_{$this->id}
customize_sanitize_{$this->id}
customize_sanitize_js_{$this->id}
customize_save
customize_save_{$this->id_data['base']}
customize_save_after
customize_save_response
customize_section_active
customize_update_{$this->type}
customize_value_{$this->id_data['base']}
customizer_widgets_section_args
dashboard_glance_items
dashboard_primary_feed
dashboard_primary_link
dashboard_primary_title
dashboard_recent_posts_query_args
dashboard_secondary_feed
dashboard_secondary_link
dashboard_secondary_title
date_formats
date_i18n
date_query_valid_columns
date_rewrite_rules
day_link
dbdelta_create_queries
dbdelta_insert_queries
dbdelta_queries
dbx_post_advanced
dbx_post_sidebar
deactivate_{$plugin}
deactivate_blog
deactivate_plugin
deactivated_plugin
default_avatar_select
default_content
default_contextual_help
default_excerpt
default_feed
default_hidden_meta_boxes
default_option_{$option}
default_page_template_title
default_site_option_{$option}
default_title
delete_{$meta_type}_meta
delete_{$meta_type}_metadata
delete_{$meta_type}meta
delete_{$taxonomy}
delete_attachment
delete_blog
delete_comment
delete_link
delete_option
delete_option_{$option}
delete_post
delete_postmeta
delete_site_email_content
delete_site_option
delete_site_option_{$option}
delete_site_transient_{$transient}
delete_term
delete_term_relationships
delete_term_taxonomy
delete_transient_{$transient}
delete_user
delete_user_form
delete_usermeta
deleted_{$meta_type}_meta
deleted_{$meta_type}meta
deleted_comment
deleted_link
deleted_option
deleted_post
deleted_postmeta
deleted_site_transient
deleted_term_relationships
deleted_term_taxonomy
deleted_transient
deleted_user
deleted_usermeta
deprecated_argument_run
deprecated_argument_trigger_error
deprecated_constructor_run
deprecated_constructor_trigger_error
deprecated_file_included
deprecated_file_trigger_error
deprecated_function_run
deprecated_function_trigger_error
determine_current_user
disable_captions
disable_months_dropdown
display_media_states
display_post_states
do_meta_boxes
do_mu_upgrade
do_parse_request
do_robots
do_robotstxt
documentation_ignore_functions
doing_it_wrong_run
doing_it_wrong_trigger_error
domain_exists
dynamic_sidebar
dynamic_sidebar_after
dynamic_sidebar_before
dynamic_sidebar_has_widgets
dynamic_sidebar_params
edit_{$field}
edit_{$post_type}_per_page
edit_{$taxonomy}
edit_{$taxonomy}_{$field}
edit_attachment
edit_bookmark_link
edit_categories_per_page
edit_category_form
edit_category_form_fields
edit_category_form_pre
edit_comment
edit_comment_link
edit_comment_misc_actions
edit_form_advanced
edit_form_after_editor
edit_form_after_title
edit_form_before_permalink
edit_form_top
edit_link
edit_link_category_form
edit_link_category_form_fields
edit_link_category_form_pre
edit_page_form
edit_post
edit_post_{$field}
edit_post_link
edit_posts_per_page
edit_profile_url
edit_tag_form
edit_tag_form_fields
edit_tag_form_pre
edit_tag_link
edit_tags_per_page
edit_term
edit_term_{$field}
edit_term_link
edit_term_taxonomies
edit_term_taxonomy
edit_terms
edit_user_{$field}
edit_user_profile
edit_user_profile_update
editable_extensions
editable_roles
editable_slug
edited_{$taxonomy}
edited_term
edited_term_taxonomies
edited_term_taxonomy
edited_terms
editor_max_image_size
editor_stylesheets
email_change_email
embed_cache_oembed_types
embed_defaults
embed_googlevideo
embed_handler_html
embed_maybe_make_link
embed_oembed_discover
embed_oembed_html
emoji_ext
emoji_url
enable_edit_any_user_configuration
enable_live_network_counts
enable_post_by_email_configuration
enable_press_this_media_discovery
enable_update_services_configuration
end_fetch_post_thumbnail_html
enter_title_here
esc_html
esc_textarea
excerpt_length
excerpt_more
exit_on_http_head
export_args
export_filters
export_wp
ext2type
extra_{$context}_headers
extra_theme_headers
feed_content_type
feed_link
file_is_displayable_image
filesystem_method
filesystem_method_file
flush_rewrite_rules_hard
force_filtered_html_on_import
format_for_editor
format_to_edit
found_posts
found_posts_query
found_users_query
fs_ftp_connection_types
gallery_style
generate_rewrite_rules
get_{$adjacent}_post_join
get_{$adjacent}_post_sort
get_{$adjacent}_post_where
get_{$meta_type}_metadata
get_{$taxonomy}
get_ancestors
get_archives_link
get_attached_file
get_attached_media
get_attached_media_args
get_avatar
get_avatar
get_avatar_comment_types
get_avatar_data
get_avatar_url
get_bloginfo_rss
get_blogs_of_user
get_bookmarks
get_calendar
get_categories_taxonomy
get_comment
get_comment_author
get_comment_author_email
get_comment_author_IP
get_comment_author_link
get_comment_author_url
get_comment_author_url_link
get_comment_date
get_comment_excerpt
get_comment_ID
get_comment_link
get_comment_text
get_comment_time
get_comment_type
get_comments_link
get_comments_number
get_comments_pagenum_link
get_date_sql
get_default_comment_status
get_delete_post_link
get_edit_bookmark_link
get_edit_comment_link
get_edit_post_link
get_edit_tag_link
get_edit_term_link
get_edit_user_link
get_editable_authors
get_enclosed
get_footer
get_header
get_image_tag
get_image_tag_class
get_lastpostdate
get_lastpostmodified
get_main_network_id
get_media_item_args
get_meta_sql
get_object_terms
get_others_drafts
get_pagenum_link
get_pages
get_post_galleries
get_post_gallery
get_post_modified_time
get_post_time
get_pung
get_sample_permalink_html
get_search_form
get_search_query
get_shortlink
get_sidebar
get_space_allowed
get_tags
get_template_part_{$slug}
get_term
get_terms
get_terms_args
get_terms_fields
get_terms_orderby
get_the_archive_description
get_the_archive_title
get_the_author_{$field}
get_the_author_{$field}
get_the_categories
get_the_date
get_the_excerpt
get_the_generator_{$type}
get_the_guid
get_the_modified_date
get_the_modified_time
get_the_tags
get_the_terms
get_the_time
get_to_ping
get_user_option_{$option}
get_usernumposts
get_users_drafts
get_wp_title_rss
getarchives_join
getarchives_where
getimagesize_mimes_to_exts
gettext
gettext_with_context
global_terms_enabled
got_rewrite
got_url_rewrite
graceful_fail
graceful_fail_template
grant_super_admin
granted_super_admin
has_nav_menu
heartbeat_nopriv_received
heartbeat_nopriv_send
heartbeat_nopriv_tick
heartbeat_received
heartbeat_send
heartbeat_settings
heartbeat_tick
hidden_meta_boxes
home_url
htmledit_pre
http_api_curl
http_api_debug
http_api_transports
http_headers_useragent
http_origin
http_request_args
http_request_host_is_external
http_request_redirection_count
http_request_reject_unsafe_urls
http_request_timeout
http_request_version
http_response
https_local_ssl_verify
https_ssl_verify
human_time_diff
icon_dir
icon_dir_uri
icon_dirs
iis7_supports_permalinks
iis7_url_rewrite_rules
image_add_caption_shortcode
image_add_caption_text
image_downsize
image_editor_default_mime_type
image_editor_save_pre
image_make_intermediate_size
image_memory_limit
image_resize_dimensions
image_save_pre
image_send_to_editor
image_send_to_editor_url
image_size_names_choose
img_caption_shortcode
img_caption_shortcode_width
import_upload_size_limit
in_admin_footer
in_admin_header
in_plugin_update_message-{$file}
in_theme_update_message-{$theme_key}
in_widget_form
includes_url
incompatible_sql_modes
index_rel_link
init
install_plugin_complete_actions
install_plugins_{$tab}
install_plugins_nonmenu_tabs
install_plugins_pre_{$tab}
install_plugins_table_api_args_{$tab}
install_plugins_table_header
install_plugins_tabs
install_theme_complete_actions
install_themes_{$tab}
install_themes_nonmenu_tabs
install_themes_pre_{$tab}
install_themes_table_api_args_{$old_filter}
install_themes_table_api_args_{$tab}
install_themes_table_header
install_themes_tabs
intermediate_image_sizes
intermediate_image_sizes_advanced
is_active_sidebar
is_email
is_email_address_unsafe
is_multi_author
is_protected_meta
is_wide_widget_in_customizer
jpeg_quality
js_escape
kses_allowed_protocols
lang_codes
language_attributes
link_category
link_title
list_cats
list_pages
list_table_primary_column
list_terms_exclusions
load_default_embeds
load_default_widgets
load_feed_engine
load_image_to_edit
load_image_to_edit_attachmenturl
load_image_to_edit_filesystempath
load_image_to_edit_path
load_textdomain
load_textdomain_mofile
load-{$page_hook}
load-{$pagenow}
load-{$plugin_page}
load-categories.php
load-edit-link-categories.php
load-importer-{$importer}
load-page-new.php
load-page.php
load-widgets.php
locale
locale_stylesheet_uri
login_body_class
login_enqueue_scripts
login_errors
login_footer
login_form
login_form_{$action}
login_form_bottom
login_form_defaults
login_form_middle
login_form_top
login_head
login_headertitle
login_headerurl
login_init
login_message
login_messages
login_redirect
login_url
login_url
loginout
logout_redirect
logout_url
loop_end
loop_start
lost_password
lostpassword_form
lostpassword_post
lostpassword_redirect
lostpassword_url
make_delete_blog
make_ham_blog
make_ham_user
make_spam_blog
make_spam_user
make_undelete_blog
manage_{$post_type}_posts_columns
manage_{$post->post_type}_posts_custom_column
manage_{$screen->id}_columns
manage_{$this->screen->id}_sortable_columns
manage_{$this->screen->taxonomy}_custom_column
manage_comments_custom_column
manage_comments_nav
manage_link_custom_column
manage_media_columns
manage_media_custom_column
manage_pages_columns
manage_pages_custom_column
manage_plugins_custom_column
manage_posts_columns
manage_posts_custom_column
manage_sites_action_links
manage_sites_custom_column
manage_taxonomies_for_{$post_type}_columns
manage_taxonomies_for_attachment_columns
manage_themes_custom_column
manage_users_custom_column
map_meta_cap
mature_blog
mce_buttons
mce_buttons_2
mce_buttons_3
mce_buttons_4
mce_css
mce_external_languages
mce_external_plugins
media_buttons
media_buttons_context
media_embedded_in_content_allowed_types
media_meta
media_row_actions
media_send_to_editor
media_submitbox_misc_sections
media_upload_{$tab}
media_upload_{$type}
media_upload_default_tab
media_upload_default_type
media_upload_form_url
media_upload_mime_type_links
media_upload_tabs
media_view_settings
media_view_strings
menu_order
meta_query_find_compatible_table_alias
mime_types
mod_rewrite_rules
month_link
months_dropdown_results
ms_site_check
ms_site_not_found
ms_user_list_site_actions
ms_user_row_actions
mu_activity_box_end
mu_dropdown_languages
mu_menu_items
mu_rightnow_end
muplugins_loaded
myblogs_allblogs_options
myblogs_blog_actions
myblogs_options
nav_menu_attr_title
nav_menu_css_class
nav_menu_description
nav_menu_item_id
nav_menu_items_{$post_type_name}
nav_menu_items_{$post_type_name}_recent
nav_menu_link_attributes
nav_menu_meta_box_object
network_admin_edit_{$_GET['action']}
network_admin_menu
network_admin_notices
network_admin_url
network_by_path_segments_count
network_home_url
network_site_url
network_site_users_after_list_table
network_sites_updated_message_{$_GET['updated']}
new_admin_email_content
new_user_email_content
newblog_notify_siteadmin
newblogname
newuser_notify_siteadmin
next_comments_link_attributes
next_posts_link_attributes
ngettext
ngettext_with_context
no_texturize_shortcodes
no_texturize_tags
nocache_headers
nonce_life
nonce_user_logged_out
number_format_i18n
oembed_dataparse
oembed_fetch_url
oembed_linktypes
oembed_providers
oembed_remote_get_args
oembed_result
oembed_ttl
opml_head
option_{$option_name}
option_{$option}
option_enable_xmlrpc
option_page_capability_{$option_page}
override_load_textdomain
override_post_lock
override_unload_textdomain
page_attributes_dropdown_pages_args
page_css_class
page_link
page_rewrite_rules
page_row_actions
paginate_links
parent_file
parent_post_rel_link
parse_query
parse_request
parse_tax_query
password_change_email
password_hint
password_reset
password_reset_expiration
password_reset_key_expired
permalink_structure_changed
personal_options
personal_options_update
phone_content
phpmailer_init
pingback_ping_source_uri
pingback_post
pingback_useragent
pings_open
plugin_install_action_links
plugin_locale
plugin_row_meta
plugins_api
plugins_api_args
plugins_api_result
plugins_loaded
plugins_update_check_locales
plugins_url
plupload_default_params
plupload_default_settings
plupload_init
populate_network_meta
populate_options
post_{$field}
post_class
post_comment_status_meta_box-options
post_comments_feed_link
post_comments_feed_link_html
post_comments_link
post_date_column_time
post_edit_form_tag
post_format_rewrite_base
post_gallery
post_gallery
post_limits
post_limits_request
post_link
post_link_category
post_lock_lost_dialog
post_locked_dialog
post_mime_types
post_password_expires
post_playlist
post_playlist
post_rewrite_rules
post_row_actions
post_submitbox_misc_actions
post_submitbox_start
post_thumbnail_html
post_thumbnail_size
post_type_archive_feed_link
post_type_archive_link
post_type_archive_title
post_type_labels_{$post_type}
post_type_link
post_types_to_delete_with_user
post_updated
post_updated_messages
post-html-upload-ui
post-plupload-upload-ui
post-upload-ui
postbox_classes_{$page}_{$id}
postmeta_form_limit
posts_clauses
posts_clauses_request
posts_distinct
posts_distinct_request
posts_fields
posts_fields_request
posts_groupby
posts_groupby_request
posts_join
posts_join_paged
posts_join_request
posts_orderby
posts_orderby_request
posts_request
posts_request_ids
posts_results
posts_search
posts_search_orderby
posts_selection
posts_where
posts_where_paged
posts_where_request
pre_{$field}
pre_{$taxonomy}_{$field}
pre_add_site_option_{$option}