Skip to content

Instantly share code, notes, and snippets.

@theperfectwill
Forked from xeoncross/index.php
Created May 23, 2016 19:01
Show Gist options
  • Save theperfectwill/cf876f9e53ef3bf851ad07ca594946e6 to your computer and use it in GitHub Desktop.
Save theperfectwill/cf876f9e53ef3bf851ad07ca594946e6 to your computer and use it in GitHub Desktop.
Benchmarking Wordpress
<?php
// Debug performace
define('START_TIME', microtime(TRUE));
define('START_MEMORY', memory_get_usage());
define('B_FILENAME', '/tmp/wordpress.debug.txt');
file_put_contents(B_FILENAME, '', LOCK_EX);
$starting_classes_ = get_declared_classes();
global $starting_classes_;
register_shutdown_function(function() {
global $starting_classes_;
$memory = round(memory_get_peak_usage() / 1024, 3);
$time = round(microtime(TRUE) - START_TIME, 3);
$message = "$time seconds and $memory kb: " . $_SERVER['REQUEST_URI'];
$message .= "\n\n\n";
$message .= print_r(get_included_files(), true);
$message .= "\n\n\n";
$functions = get_defined_functions();
foreach($functions['user'] as $func) {
$reflFunc = new ReflectionFunction($func);
$message .= $func . "\t\t" . basename($reflFunc->getFileName()) . ':' . $reflFunc->getStartLine() . "\n";
}
$message .= "\n\n\n";
$message .= print_r(array_diff(get_declared_classes(), $starting_classes_), true);
$message .= "\n\n\n";
$message .= print_r(get_defined_constants(true)['user'], true);
$message .= "\n\n\n";
file_put_contents(B_FILENAME, $message, FILE_APPEND | LOCK_EX);
});
function benchmark($name=null) {
static $last = 0;
$memory = round((memory_get_usage() - START_TIME) / 1024, 1);
$diff = round($memory - $last, 1);
$last = $memory;
$message = round(microtime(TRUE) - START_TIME, 3) . "\t$memory\t$diff kb \t$name\n";
file_put_contents(B_FILENAME, $message, FILE_APPEND | LOCK_EX);
}
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
0.011 -1376013 kb class
0.011 3.8 kb class
0.012 2.6 kb formatting
0.012 21.7 kb capabilities
0.012 40.5 kb query
0.013 5.5 kb date
0.013 6 kb theme
0.014 34.7 kb class
0.015 0.2 kb template
0.016 7.7 kb user
0.016 16.8 kb session
0.017 3.7 kb meta
0.018 4.2 kb general
0.018 0.1 kb link
0.019 0.7 kb author
0.019 15.3 kb post
0.02 14.3 kb post
0.02 0.4 kb revision
0.02 6 kb post
0.021 0.1 kb post
0.021 0.1 kb category
0.022 14.5 kb category
0.022 3.7 kb comment
0.023 8.3 kb comment
0.023 32.4 kb rewrite
0.024 0.1 kb feed
0.024 0.1 kb bookmark
0.024 0.2 kb bookmark
0.025 144.7 kb kses
0.026 0.1 kb cron
0.027 0.2 kb deprecated
0.029 44.4 kb script
0.029 5.8 kb taxonomy
0.03 15.2 kb update
0.03 1.6 kb canonical
0.03 0.9 kb shortcodes
0.031 10.6 kb class
0.031 5 kb media
0.032 0.8 kb http
0.032 27.7 kb class
0.033 16.4 kb widgets
0.033 0.5 kb nav
0.033 9.8 kb nav
0.034 3.6 kb admin
0.081 seconds and 2447.664 kb: /
Array
(
[0] => /srv/www/wordpress-trunk/index.php
[1] => /srv/www/wordpress-trunk/wp-blog-header.php
[2] => /srv/www/wordpress-trunk/wp-load.php
[3] => /srv/www/wordpress-trunk/wp-config.php
[4] => /srv/www/wordpress-trunk/wp-settings.php
[5] => /srv/www/wordpress-trunk/wp-includes/load.php
[6] => /srv/www/wordpress-trunk/wp-includes/default-constants.php
[7] => /srv/www/wordpress-trunk/wp-includes/version.php
[8] => /srv/www/wordpress-trunk/wp-includes/compat.php
[9] => /srv/www/wordpress-trunk/wp-includes/functions.php
[10] => /srv/www/wordpress-trunk/wp-includes/option.php
[11] => /srv/www/wordpress-trunk/wp-includes/class-wp.php
[12] => /srv/www/wordpress-trunk/wp-includes/class-wp-error.php
[13] => /srv/www/wordpress-trunk/wp-includes/plugin.php
[14] => /srv/www/wordpress-trunk/wp-includes/pomo/mo.php
[15] => /srv/www/wordpress-trunk/wp-includes/pomo/translations.php
[16] => /srv/www/wordpress-trunk/wp-includes/pomo/entry.php
[17] => /srv/www/wordpress-trunk/wp-includes/pomo/streams.php
[18] => /srv/www/wordpress-trunk/wp-includes/wp-db.php
[19] => /srv/www/wordpress-trunk/wp-includes/cache.php
[20] => /srv/www/wordpress-trunk/wp-includes/default-filters.php
[21] => /srv/www/wordpress-trunk/wp-includes/l10n.php
[22] => /srv/www/wordpress-trunk/wp-includes/class-wp-walker.php
[23] => /srv/www/wordpress-trunk/wp-includes/class-wp-ajax-response.php
[24] => /srv/www/wordpress-trunk/wp-includes/formatting.php
[25] => /srv/www/wordpress-trunk/wp-includes/capabilities.php
[26] => /srv/www/wordpress-trunk/wp-includes/query.php
[27] => /srv/www/wordpress-trunk/wp-includes/date.php
[28] => /srv/www/wordpress-trunk/wp-includes/theme.php
[29] => /srv/www/wordpress-trunk/wp-includes/class-wp-theme.php
[30] => /srv/www/wordpress-trunk/wp-includes/template.php
[31] => /srv/www/wordpress-trunk/wp-includes/user.php
[32] => /srv/www/wordpress-trunk/wp-includes/session.php
[33] => /srv/www/wordpress-trunk/wp-includes/meta.php
[34] => /srv/www/wordpress-trunk/wp-includes/general-template.php
[35] => /srv/www/wordpress-trunk/wp-includes/link-template.php
[36] => /srv/www/wordpress-trunk/wp-includes/author-template.php
[37] => /srv/www/wordpress-trunk/wp-includes/post.php
[38] => /srv/www/wordpress-trunk/wp-includes/post-template.php
[39] => /srv/www/wordpress-trunk/wp-includes/revision.php
[40] => /srv/www/wordpress-trunk/wp-includes/post-formats.php
[41] => /srv/www/wordpress-trunk/wp-includes/post-thumbnail-template.php
[42] => /srv/www/wordpress-trunk/wp-includes/category.php
[43] => /srv/www/wordpress-trunk/wp-includes/category-template.php
[44] => /srv/www/wordpress-trunk/wp-includes/comment.php
[45] => /srv/www/wordpress-trunk/wp-includes/comment-template.php
[46] => /srv/www/wordpress-trunk/wp-includes/rewrite.php
[47] => /srv/www/wordpress-trunk/wp-includes/feed.php
[48] => /srv/www/wordpress-trunk/wp-includes/bookmark.php
[49] => /srv/www/wordpress-trunk/wp-includes/bookmark-template.php
[50] => /srv/www/wordpress-trunk/wp-includes/kses.php
[51] => /srv/www/wordpress-trunk/wp-includes/cron.php
[52] => /srv/www/wordpress-trunk/wp-includes/deprecated.php
[53] => /srv/www/wordpress-trunk/wp-includes/script-loader.php
[54] => /srv/www/wordpress-trunk/wp-includes/class.wp-dependencies.php
[55] => /srv/www/wordpress-trunk/wp-includes/class.wp-scripts.php
[56] => /srv/www/wordpress-trunk/wp-includes/functions.wp-scripts.php
[57] => /srv/www/wordpress-trunk/wp-includes/class.wp-styles.php
[58] => /srv/www/wordpress-trunk/wp-includes/functions.wp-styles.php
[59] => /srv/www/wordpress-trunk/wp-includes/taxonomy.php
[60] => /srv/www/wordpress-trunk/wp-includes/update.php
[61] => /srv/www/wordpress-trunk/wp-includes/canonical.php
[62] => /srv/www/wordpress-trunk/wp-includes/shortcodes.php
[63] => /srv/www/wordpress-trunk/wp-includes/class-wp-embed.php
[64] => /srv/www/wordpress-trunk/wp-includes/media.php
[65] => /srv/www/wordpress-trunk/wp-includes/http.php
[66] => /srv/www/wordpress-trunk/wp-includes/class-http.php
[67] => /srv/www/wordpress-trunk/wp-includes/widgets.php
[68] => /srv/www/wordpress-trunk/wp-includes/nav-menu.php
[69] => /srv/www/wordpress-trunk/wp-includes/nav-menu-template.php
[70] => /srv/www/wordpress-trunk/wp-includes/admin-bar.php
[71] => /srv/www/wordpress-trunk/wp-includes/vars.php
[72] => /srv/www/wordpress-trunk/wp-includes/pluggable.php
[73] => /srv/www/wordpress-trunk/wp-includes/pluggable-deprecated.php
[74] => /srv/www/wordpress-trunk/wp-includes/default-widgets.php
[75] => /srv/www/wordpress-trunk/wp-includes/locale.php
[76] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/functions.php
[77] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/inc/custom-header.php
[78] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/inc/template-tags.php
[79] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/inc/customizer.php
[80] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/inc/featured-content.php
[81] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/inc/widgets.php
[82] => /srv/www/wordpress-trunk/wp-includes/template-loader.php
[83] => /srv/www/wordpress-trunk/wp-includes/class-wp-admin-bar.php
[84] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/index.php
[85] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/header.php
[86] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/content.php
[87] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/sidebar-content.php
[88] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/sidebar.php
[89] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/footer.php
[90] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen/sidebar-footer.php
)
benchmark index.php:40
wp_unregister_globals load.php:18
wp_fix_server_vars load.php:44
wp_check_php_mysql_versions load.php:110
wp_favicon_request load.php:134
wp_maintenance load.php:158
timer_start load.php:209
timer_stop load.php:230
wp_debug_mode load.php:270
wp_set_lang_dir load.php:303
require_wp_db load.php:342
wp_set_wpdb_vars load.php:367
wp_using_ext_object_cache load.php:399
wp_start_object_cache load.php:418
wp_not_installed load.php:467
wp_get_mu_plugins load.php:500
wp_get_active_and_valid_plugins load.php:530
wp_set_internal_encoding load.php:566
wp_magic_quotes load.php:583
shutdown_action_hook load.php:607
wp_clone load.php:627
is_admin load.php:642
is_blog_admin load.php:663
is_network_admin load.php:684
is_user_admin load.php:706
is_multisite load.php:722
get_current_blog_id load.php:739
wp_load_translations_early load.php:759
wp_initial_constants default-constants.php:15
wp_plugin_directory_constants default-constants.php:99
wp_cookie_constants default-constants.php:160
wp_ssl_constants default-constants.php:246
wp_functionality_constants default-constants.php:273
wp_templating_constants default-constants.php:301
_mb_substr compat.php:22
_hash_hmac compat.php:41
hash_equals compat.php:111
mysql2date functions.php:26
current_time functions.php:61
date_i18n functions.php:87
number_format_i18n functions.php:168
size_format functions.php:202
get_weekstartend functions.php:227
maybe_unserialize functions.php:265
is_serialized functions.php:283
is_serialized_string functions.php:346
maybe_serialize functions.php:375
xmlrpc_getposttitle functions.php:400
xmlrpc_getpostcategory functions.php:424
xmlrpc_removepostdata functions.php:443
wp_extract_urls functions.php:458
do_enclose functions.php:495
wp_get_http functions.php:572
wp_get_http_headers functions.php:623
is_new_day functions.php:646
build_query functions.php:669
_http_build_query functions.php:691
add_query_arg functions.php:738
remove_query_arg functions.php:809
add_magic_quotes functions.php:826
wp_remote_fopen functions.php:847
wp functions.php:871
get_status_header_desc functions.php:887
status_header functions.php:972
wp_get_nocache_headers functions.php:1009
nocache_headers functions.php:1049
cache_javascript_headers functions.php:1077
get_num_queries functions.php:1094
bool_from_yn functions.php:1109
do_feed functions.php:1125
do_feed_rdf functions.php:1159
do_feed_rss functions.php:1170
do_feed_rss2 functions.php:1183
do_feed_atom functions.php:1199
do_robots functions.php:1214
is_blog_installed functions.php:1260
wp_nonce_url functions.php:1335
wp_nonce_field functions.php:1366
wp_referer_field functions.php:1390
wp_original_referer_field functions.php:1412
wp_get_referer functions.php:1431
wp_get_original_referer functions.php:1452
wp_mkdir_p functions.php:1468
path_is_absolute functions.php:1537
path_join functions.php:1568
wp_normalize_path functions.php:1586
get_temp_dir functions.php:1606
wp_is_writable functions.php:1645
win_is_writable functions.php:1668
wp_upload_dir functions.php:1718
wp_unique_filename functions.php:1856
wp_upload_bits functions.php:1927
wp_ext2type functions.php:2002
wp_check_filetype functions.php:2045
wp_check_filetype_and_ext functions.php:2082
wp_get_mime_types functions.php:2159
get_allowed_mime_types functions.php:2282
wp_nonce_ays functions.php:2315
wp_die functions.php:2345
_default_wp_die_handler functions.php:2391
_xmlrpc_wp_die_handler functions.php:2569
_ajax_wp_die_handler functions.php:2592
_scalar_wp_die_handler functions.php:2608
wp_send_json functions.php:2622
wp_send_json_success functions.php:2638
wp_send_json_error functions.php:2654
_config_wp_home functions.php:2678
_config_wp_siteurl functions.php:2699
_mce_set_direction functions.php:2722
smilies_init functions.php:2755
wp_parse_args functions.php:2863
wp_parse_id_list functions.php:2884
wp_array_slice_assoc functions.php:2900
wp_filter_object_list functions.php:2924
wp_list_filter functions.php:2950
wp_list_pluck functions.php:2996
wp_maybe_load_widgets functions.php:3044
wp_widgets_add_menu functions.php:3072
wp_ob_end_flush_all functions.php:3089
dead_db functions.php:3113
absint functions.php:3156
_deprecated_function functions.php:3178
_deprecated_file functions.php:3233
_deprecated_argument functions.php:3295
_doing_it_wrong functions.php:3346
is_lighttpd_before_150 functions.php:3386
apache_mod_loaded functions.php:3401
iis7_supports_permalinks functions.php:3428
validate_file functions.php:3469
is_ssl functions.php:3492
force_ssl_login functions.php:3514
force_ssl_admin functions.php:3526
wp_guess_url functions.php:3548
wp_suspend_cache_addition functions.php:3602
wp_suspend_cache_invalidation functions.php:3623
is_main_site functions.php:3641
is_main_network functions.php:3662
global_terms_enabled functions.php:3698
wp_timezone_override_offset functions.php:3733
_wp_timezone_choice_usort_callback functions.php:3756
wp_timezone_choice functions.php:3802
_cleanup_header_comment functions.php:3934
wp_scheduled_delete functions.php:3944
get_file_data functions.php:4002
__return_true functions.php:4053
__return_false functions.php:4068
__return_zero functions.php:4081
__return_empty_array functions.php:4094
__return_null functions.php:4107
__return_empty_string functions.php:4122
send_nosniff_header functions.php:4134
_wp_mysql_week functions.php:4147
wp_find_hierarchy_loop functions.php:4176
wp_find_hierarchy_loop_tortoise_hare functions.php:4205
send_frame_options_header functions.php:4239
wp_allowed_protocols functions.php:4253
wp_debug_backtrace_summary functions.php:4289
_get_non_cached_ids functions.php:4334
_device_can_upload functions.php:4354
wp_is_stream functions.php:4375
wp_checkdate functions.php:4395
wp_auth_check_load functions.php:4418
wp_auth_check_html functions.php:4454
wp_auth_check functions.php:4505
get_tag_regex functions.php:4526
_canonical_charset functions.php:4544
mbstring_binary_safe_encoding functions.php:4579
reset_mbstring_encoding functions.php:4608
wp_validate_boolean functions.php:4620
get_option option.php:25
wp_protect_special_option option.php:136
form_option option.php:149
wp_load_alloptions option.php:160
wp_load_core_site_options option.php:191
update_option option.php:231
add_option option.php:354
delete_option option.php:444
delete_transient option.php:513
get_transient option.php:562
set_transient option.php:630
wp_user_settings option.php:714
get_user_setting option.php:764
set_user_setting option.php:782
delete_user_setting option.php:805
get_all_user_settings option.php:836
wp_set_all_user_settings option.php:875
delete_all_user_settings option.php:910
get_site_option option.php:931
add_site_option option.php:1025
delete_site_option option.php:1113
update_site_option option.php:1178
delete_site_transient option.php:1265
get_site_transient option.php:1315
set_site_transient option.php:1384
is_wp_error class-wp-error.php:257
add_filter plugin.php:82
has_filter plugin.php:107
apply_filters plugin.php:178
apply_filters_ref_array plugin.php:240
remove_filter plugin.php:297
remove_all_filters plugin.php:325
current_filter plugin.php:350
current_action plugin.php:364
doing_filter plugin.php:389
doing_action plugin.php:410
add_action plugin.php:436
do_action plugin.php:462
did_action plugin.php:522
do_action_ref_array plugin.php:545
has_action plugin.php:603
remove_action plugin.php:621
remove_all_actions plugin.php:634
plugin_basename plugin.php:654
wp_register_plugin_realpath plugin.php:684
plugin_dir_path plugin.php:716
plugin_dir_url plugin.php:728
register_activation_hook plugin.php:750
register_deactivation_hook plugin.php:773
register_uninstall_hook plugin.php:804
_wp_call_all_hook plugin.php:839
_wp_filter_build_unique_id plugin.php:884
wp_cache_add cache.php:24
wp_cache_close cache.php:42
wp_cache_decr cache.php:58
wp_cache_delete cache.php:75
wp_cache_flush cache.php:90
wp_cache_get cache.php:110
wp_cache_incr cache.php:128
wp_cache_init cache.php:140
wp_cache_replace cache.php:157
wp_cache_set cache.php:177
wp_cache_switch_to_blog cache.php:192
wp_cache_add_global_groups cache.php:205
wp_cache_add_non_persistent_groups cache.php:218
wp_cache_reset cache.php:238
get_locale l10n.php:26
translate l10n.php:87
before_last_bar l10n.php:113
translate_with_gettext_context l10n.php:134
__ l10n.php:160
esc_attr__ l10n.php:175
esc_html__ l10n.php:190
_e l10n.php:202
esc_attr_e l10n.php:214
esc_html_e l10n.php:226
_x l10n.php:246
_ex l10n.php:260
esc_attr_x l10n.php:274
esc_html_x l10n.php:288
_n l10n.php:311
_nx l10n.php:342
_n_noop l10n.php:384
_nx_noop l10n.php:393
translate_nooped_plural l10n.php:408
load_textdomain l10n.php:433
unload_textdomain l10n.php:492
load_default_textdomain l10n.php:537
load_plugin_textdomain l10n.php:577
load_muplugin_textdomain l10n.php:618
load_theme_textdomain l10n.php:648
load_child_theme_textdomain l10n.php:688
get_translations_for_domain l10n.php:704
is_textdomain_loaded l10n.php:720
translate_user_role l10n.php:742
get_available_languages l10n.php:757
wp_get_installed_translations l10n.php:781
wp_get_pomo_file_data l10n.php:823
wp_dropdown_languages l10n.php:847
wptexturize formatting.php:30
_wptexturize_pushpop_element formatting.php:301
wpautop formatting.php:355
_autop_newline_preservation_helper formatting.php:458
shortcode_unautop formatting.php:472
seems_utf8 formatting.php:529
_wp_specialchars formatting.php:567
wp_specialchars_decode formatting.php:645
wp_check_invalid_utf8 formatting.php:702
utf8_uri_encode formatting.php:750
remove_accents formatting.php:804
sanitize_file_name formatting.php:1044
sanitize_user formatting.php:1122
sanitize_key formatting.php:1160
sanitize_title formatting.php:1190
sanitize_title_for_query formatting.php:1224
sanitize_title_with_dashes formatting.php:1241
sanitize_sql_orderby formatting.php:1305
sanitize_html_class formatting.php:1327
convert_chars formatting.php:1362
balancetags formatting.php:1428
force_balance_tags formatting.php:1454
format_to_edit formatting.php:1580
zeroise formatting.php:1611
backslashit formatting.php:1623
trailingslashit formatting.php:1643
untrailingslashit formatting.php:1658
addslashes_gpc formatting.php:1673
stripslashes_deep formatting.php:1691
urlencode_deep formatting.php:1715
rawurlencode_deep formatting.php:1728
antispambot formatting.php:1741
_make_url_clickable_cb formatting.php:1771
_make_web_ftp_clickable_cb formatting.php:1808
_make_email_clickable_cb formatting.php:1836
make_clickable formatting.php:1852
_split_str_by_whitespace formatting.php:1942
wp_rel_nofollow formatting.php:1977
wp_rel_nofollow_callback formatting.php:1996
translate_smiley formatting.php:2015
convert_smilies formatting.php:2050
is_email formatting.php:2100
wp_iso_descrambler formatting.php:2189
_wp_iso_convert formatting.php:2209
get_gmt_from_date formatting.php:2228
get_date_from_gmt formatting.php:2259
iso8601_timezone_to_offset formatting.php:2284
iso8601_to_datetime formatting.php:2306
popuplinks formatting.php:2341
sanitize_email formatting.php:2354
human_time_diff formatting.php:2460
wp_trim_excerpt formatting.php:2528
wp_trim_words formatting.php:2582
ent2ncr formatting.php:2626
wp_richedit_pre formatting.php:2915
wp_htmledit_pre formatting.php:2953
_deep_replace formatting.php:2981
esc_sql formatting.php:3003
esc_url formatting.php:3025
esc_url_raw formatting.php:3081
htmlentities2 formatting.php:3095
esc_js formatting.php:3113
esc_html formatting.php:3141
esc_attr formatting.php:3166
esc_textarea formatting.php:3191
tag_escape formatting.php:3212
wp_make_link_relative formatting.php:3236
sanitize_option formatting.php:3252
wp_parse_str formatting.php:3452
wp_pre_kses_less_than formatting.php:3477
wp_pre_kses_less_than_callback formatting.php:3490
wp_sprintf formatting.php:3506
wp_sprintf_l formatting.php:3580
wp_html_excerpt formatting.php:3640
links_add_base_url formatting.php:3665
_links_add_base formatting.php:3681
links_add_target formatting.php:3706
_links_add_target formatting.php:3722
normalize_whitespace formatting.php:3737
wp_strip_all_tags formatting.php:3757
sanitize_text_field formatting.php:3781
wp_basename formatting.php:3823
capital_p_dangit formatting.php:3834
sanitize_mime_type formatting.php:3858
sanitize_trackback_urls formatting.php:3879
wp_slash formatting.php:3912
wp_unslash formatting.php:3939
get_url_in_content formatting.php:3951
wp_spaces_regexp formatting.php:3974
map_meta_cap capabilities.php:1047
current_user_can capabilities.php:1352
current_user_can_for_blog capabilities.php:1373
author_can capabilities.php:1402
user_can capabilities.php:1426
get_role capabilities.php:1448
add_role capabilities.php:1468
remove_role capabilities.php:1485
get_super_admins capabilities.php:1503
is_super_admin capabilities.php:1520
get_query_var query.php:25
get_queried_object query.php:41
get_queried_object_id query.php:56
set_query_var query.php:72
query_posts query.php:90
wp_reset_query query.php:105
wp_reset_postdata query.php:117
is_archive query.php:140
is_post_type_archive query.php:161
is_attachment query.php:182
is_author query.php:206
is_category query.php:230
is_tag query.php:254
is_tax query.php:283
is_comments_popup query.php:303
is_date query.php:323
is_day query.php:343
is_feed query.php:364
is_comment_feed query.php:384
is_front_page query.php:414
is_home query.php:443
is_month query.php:463
is_page query.php:490
is_paged query.php:510
is_preview query.php:530
is_robots query.php:550
is_search query.php:570
is_single query.php:599
is_singular query.php:626
is_time query.php:646
is_trackback query.php:666
is_year query.php:686
is_404 query.php:706
is_main_query query.php:724
have_posts query.php:748
in_the_loop query.php:762
rewind_posts query.php:777
the_post query.php:790
have_comments query.php:809
the_comment query.php:823
wp_old_slug_redirect query.php:4557
setup_postdata query.php:4615
wp_get_themes theme.php:27
wp_get_theme theme.php:92
wp_clean_themes_cache theme.php:115
is_child_theme theme.php:130
get_stylesheet theme.php:147
get_stylesheet_directory theme.php:165
get_stylesheet_directory_uri theme.php:189
get_stylesheet_uri theme.php:216
get_locale_stylesheet_uri theme.php:248
get_template theme.php:278
get_template_directory theme.php:296
get_template_directory_uri theme.php:320
get_theme_roots theme.php:344
register_theme_directory theme.php:366
search_theme_directories theme.php:398
get_theme_root theme.php:524
get_theme_root_uri theme.php:559
get_raw_theme_root theme.php:604
locale_stylesheet theme.php:634
preview_theme theme.php:649
_preview_theme_template_filter theme.php:689
_preview_theme_stylesheet_filter theme.php:701
preview_theme_ob_filter theme.php:714
preview_theme_ob_filter_callback theme.php:729
switch_theme theme.php:762
validate_current_theme theme.php:841
get_theme_mods theme.php:877
get_theme_mod theme.php:906
set_theme_mod theme.php:940
remove_theme_mod theme.php:973
remove_theme_mods theme.php:993
get_header_textcolor theme.php:1010
header_textcolor theme.php:1019
display_header_text theme.php:1030
get_header_image theme.php:1045
_get_random_header_data theme.php:1067
get_random_header_image theme.php:1105
is_random_header_image theme.php:1124
header_image theme.php:1145
get_uploaded_header_images theme.php:1156
get_custom_header theme.php:1189
register_default_headers theme.php:1230
unregister_default_headers theme.php:1249
get_background_image theme.php:1268
background_image theme.php:1277
get_background_color theme.php:1288
background_color theme.php:1297
_custom_background_cb theme.php:1307
add_editor_style theme.php:1371
remove_editor_styles theme.php:1396
get_editor_stylesheets theme.php:1414
add_theme_support theme.php:1465
_custom_header_background_just_in_time theme.php:1621
get_theme_support theme.php:1661
remove_theme_support theme.php:1693
_remove_theme_support theme.php:1707
current_theme_supports theme.php:1753
require_if_theme_supports theme.php:1822
_delete_attachment_theme_mod theme.php:1840
check_theme_switched theme.php:1859
_wp_customize_include theme.php:1900
_wp_customize_loader_settings theme.php:1917
wp_customize_url theme.php:1956
wp_customize_support_script theme.php:1978
is_customize_preview theme.php:2010
get_query_template template.php:23
get_index_template template.php:55
get_404_template template.php:70
get_archive_template template.php:85
get_post_type_archive_template template.php:110
get_author_template template.php:133
get_category_template template.php:162
get_tag_template template.php:191
get_taxonomy_template template.php:225
get_date_template template.php:251
get_home_template template.php:269
get_front_page_template template.php:287
get_page_template template.php:308
get_paged_template template.php:343
get_search_template template.php:358
get_single_template template.php:373
get_attachment_template template.php:404
get_comments_popup_template template.php:439
locate_template template.php:462
load_template template.php:494
wp_signon user.php:26
wp_authenticate_username_password user.php:114
wp_authenticate_cookie user.php:169
wp_authenticate_spam_check user.php:204
wp_validate_logged_in_cookie user.php:237
count_user_posts user.php:259
count_many_users_posts user.php:287
get_current_user_id user.php:323
get_user_option user.php:349
update_user_option user.php:404
delete_user_option user.php:430
get_users user.php:932
get_blogs_of_user user.php:955
is_user_member_of_blog user.php:1054
add_user_meta user.php:1083
delete_user_meta user.php:1103
get_user_meta user.php:1120
update_user_meta user.php:1142
count_users user.php:1158
setup_userdata user.php:1244
wp_dropdown_users user.php:1322
sanitize_user_field user.php:1416
update_user_caches user.php:1514
clean_user_cache user.php:1528
username_exists user.php:1549
email_exists user.php:1565
validate_username user.php:1581
wp_insert_user user.php:1636
wp_update_user user.php:1889
wp_create_user user.php:1958
_get_additional_user_keys user.php:1976
wp_get_user_contact_methods user.php:1991
_wp_get_user_contactmethods user.php:2018
check_password_reset_key user.php:2036
reset_password user.php:2085
register_new_user user.php:2109
wp_get_session_token user.php:2197
wp_get_all_sessions user.php:2208
wp_destroy_current_session user.php:2218
wp_destroy_other_sessions user.php:2231
wp_destroy_all_sessions user.php:2244
add_metadata meta.php:29
update_metadata meta.php:141
delete_metadata meta.php:293
get_metadata meta.php:440
metadata_exists meta.php:507
get_metadata_by_mid meta.php:544
update_metadata_by_mid meta.php:588
delete_metadata_by_mid meta.php:680
update_meta_cache meta.php:766
get_meta_sql meta.php:846
_get_meta_table meta.php:1135
is_protected_meta meta.php:1154
sanitize_meta meta.php:1179
register_meta meta.php:1208
get_header general-template.php:24
get_footer general-template.php:66
get_sidebar general-template.php:108
get_template_part general-template.php:158
get_search_form general-template.php:204
wp_loginout general-template.php:282
wp_logout_url general-template.php:316
wp_login_url general-template.php:349
wp_registration_url general-template.php:380
wp_login_form general-template.php:400
wp_lostpassword_url general-template.php:504
wp_register general-template.php:536
wp_meta general-template.php:576
bloginfo general-template.php:593
get_bloginfo general-template.php:622
wp_title general-template.php:755
single_post_title general-template.php:891
post_type_archive_title general-template.php:924
single_cat_title general-template.php:967
single_tag_title general-template.php:988
single_term_title general-template.php:1009
single_month_title general-template.php:1073
get_archives_link general-template.php:1131
wp_get_archives general-template.php:1186
calendar_week_mod general-template.php:1388
get_calendar general-template.php:1406
delete_get_calendar_cache general-template.php:1623
allowed_tags general-template.php:1642
the_date_xml general-template.php:1664
the_date general-template.php:1689
get_the_date general-template.php:1730
the_modified_date general-template.php:1767
get_the_modified_date general-template.php:1799
the_time general-template.php:1824
get_the_time general-template.php:1848
get_post_time general-template.php:1886
the_modified_time general-template.php:1920
get_the_modified_time general-template.php:1942
get_post_modified_time general-template.php:1973
the_weekday general-template.php:2005
the_weekday_date general-template.php:2031
wp_head general-template.php:2059
wp_footer general-template.php:2073
feed_links general-template.php:2089
feed_links_extra general-template.php:2115
rsd_link general-template.php:2190
wlwmanifest_link general-template.php:2200
noindex general-template.php:2216
wp_no_robots general-template.php:2230
user_can_richedit general-template.php:2244
wp_default_editor general-template.php:2279
wp_editor general-template.php:2315
get_search_query general-template.php:2335
the_search_query general-template.php:2359
language_attributes general-template.php:2380
paginate_links general-template.php:2457
wp_admin_css_color general-template.php:2596
register_admin_color_schemes general-template.php:2615
wp_admin_css_uri general-template.php:2682
wp_admin_css general-template.php:2722
add_thickbox general-template.php:2766
wp_generator general-template.php:2779
the_generator general-template.php:2800
get_the_generator general-template.php:2825
checked general-template.php:2902
selected general-template.php:2918
disabled general-template.php:2934
__checked_selected_helper general-template.php:2952
wp_heartbeat_settings general-template.php:2974
the_permalink link-template.php:14
user_trailingslashit link-template.php:40
permalink_anchor link-template.php:72
get_the_permalink link-template.php:99
get_permalink link-template.php:112
get_post_permalink link-template.php:244
post_permalink link-template.php:297
get_page_link link-template.php:316
_get_page_link link-template.php:349
get_attachment_link link-template.php:391
get_year_link link-template.php:439
get_month_link link-template.php:471
get_day_link link-template.php:508
the_feed_link link-template.php:548
get_feed_link link-template.php:571
get_post_comments_feed_link link-template.php:617
post_comments_feed_link link-template.php:668
get_author_feed_link link-template.php:697
get_category_feed_link link-template.php:741
get_term_feed_link link-template.php:758
get_tag_feed_link link-template.php:836
get_edit_tag_link link-template.php:849
edit_tag_link link-template.php:871
get_edit_term_link link-template.php:894
edit_term_link link-template.php:936
get_search_link link-template.php:976
get_search_feed_link link-template.php:1015
get_search_comments_feed_link link-template.php:1054
get_post_type_archive_link link-template.php:1083
get_post_type_archive_feed_link link-template.php:1122
get_edit_post_link link-template.php:1163
edit_post_link link-template.php:1204
get_delete_post_link link-template.php:1243
get_edit_comment_link link-template.php:1281
edit_comment_link link-template.php:1308
get_edit_bookmark_link link-template.php:1341
edit_bookmark_link link-template.php:1370
get_edit_user_link link-template.php:1400
get_previous_post link-template.php:1440
get_next_post link-template.php:1454
get_adjacent_post link-template.php:1471
get_adjacent_post_rel_link link-template.php:1597
adjacent_posts_rel_link link-template.php:1645
adjacent_posts_rel_link_wp_head link-template.php:1657
next_post_rel_link link-template.php:1674
prev_post_rel_link link-template.php:1688
get_boundary_post link-template.php:1706
get_previous_post_link link-template.php:1762
previous_post_link link-template.php:1778
get_next_post_link link-template.php:1794
next_post_link link-template.php:1810
get_adjacent_post_link link-template.php:1829
adjacent_post_link link-template.php:1891
get_pagenum_link link-template.php:1905
get_next_posts_page_link link-template.php:1979
next_posts link-template.php:1999
get_next_posts_link link-template.php:2017
next_posts_link link-template.php:2054
get_previous_posts_page_link link-template.php:2069
previous_posts link-template.php:2087
get_previous_posts_link link-template.php:2104
previous_posts_link link-template.php:2131
get_posts_nav_link link-template.php:2143
posts_nav_link link-template.php:2183
get_comments_pagenum_link link-template.php:2196
get_next_comments_link link-template.php:2240
next_comments_link link-template.php:2280
get_previous_comments_link link-template.php:2292
previous_comments_link link-template.php:2323
paginate_comments_links link-template.php:2336
get_shortcut_link link-template.php:2375
home_url link-template.php:2419
get_home_url link-template.php:2437
site_url link-template.php:2488
get_site_url link-template.php:2506
admin_url link-template.php:2543
get_admin_url link-template.php:2557
includes_url link-template.php:2584
content_url link-template.php:2610
plugins_url link-template.php:2642
network_site_url link-template.php:2692
network_home_url link-template.php:2733
network_admin_url link-template.php:2774
user_admin_url link-template.php:2804
self_admin_url link-template.php:2831
set_url_scheme link-template.php:2849
get_dashboard_url link-template.php:2899
get_edit_profile_url link-template.php:2944
rel_canonical link-template.php:2972
wp_get_shortlink link-template.php:3003
wp_shortlink_wp_head link-template.php:3068
wp_shortlink_header link-template.php:3086
the_shortlink link-template.php:3112
get_the_author author-template.php:24
the_author author-template.php:59
get_the_modified_author author-template.php:80
the_modified_author author-template.php:103
get_the_author_meta author-template.php:116
the_author_meta author-template.php:150
get_the_author_link author-template.php:175
the_author_link author-template.php:195
get_the_author_posts author-template.php:208
the_author_posts author-template.php:223
the_author_posts_link author-template.php:241
get_author_posts_url author-template.php:272
wp_list_authors author-template.php:337
is_multi_author author-template.php:444
__clear_multi_author_cache author-template.php:468
create_initial_post_types post.php:19
get_attached_file post.php:187
update_attached_file post.php:218
_wp_relative_upload_path post.php:248
get_children post.php:318
get_extended post.php:383
get_post post.php:417
get_post_ancestors post.php:781
get_post_field post.php:821
get_post_mime_type post.php:844
get_post_status post.php:864
get_post_statuses post.php:903
get_page_statuses post.php:924
register_post_status post.php:976
get_post_status_object post.php:1053
get_post_stati post.php:1079
is_post_type_hierarchical post.php:1099
post_type_exists post.php:1117
get_post_type post.php:1129
get_post_type_object post.php:1148
get_post_types post.php:1175
register_post_type post.php:1296
get_post_type_capabilities post.php:1523
_post_type_meta_capabilities post.php:1577
get_post_type_labels post.php:1620
_get_custom_object_labels post.php:1666
_add_post_type_submenus post.php:1697
add_post_type_support post.php:1726
remove_post_type_support post.php:1746
get_all_post_type_supports post.php:1761
post_type_supports post.php:1779
set_post_type post.php:1799
get_posts post.php:1839
add_post_meta post.php:1889
delete_post_meta post.php:1912
get_post_meta post.php:1932
update_post_meta post.php:1954
delete_post_meta_by_key post.php:1970
get_post_custom post.php:1985
get_post_custom_keys post.php:2004
get_post_custom_values post.php:2026
is_sticky post.php:2046
sanitize_post post.php:2080
sanitize_post_field post.php:2119
stick_post post.php:2265
unstick_post post.php:2286
_count_posts_cache_key post.php:2313
wp_count_posts post.php:2341
wp_count_attachments post.php:2400
get_post_mime_types post.php:2432
wp_match_mime_types post.php:2463
wp_post_mime_type_where post.php:2508
wp_delete_post post.php:2566
_reset_front_page_settings_for_post post.php:2678
wp_trash_post post.php:2711
wp_untrash_post post.php:2758
wp_trash_post_comments post.php:2807
wp_untrash_post_comments post.php:2861
wp_get_post_categories post.php:2926
wp_get_post_tags post.php:2952
wp_get_post_terms post.php:2973
wp_get_recent_posts post.php:2996
wp_insert_post post.php:3068
wp_update_post post.php:3533
wp_publish_post post.php:3589
check_and_publish_future_post post.php:3631
wp_unique_post_slug post.php:3668
_truncate_post_slug post.php:3785
wp_add_post_tags post.php:3809
wp_set_post_tags post.php:3827
wp_set_post_terms post.php:3845
wp_set_post_categories post.php:3888
wp_transition_post_status post.php:3928
add_ping post.php:3981
get_enclosed post.php:4011
get_pung post.php:4048
get_to_ping post.php:4075
trackback_url_list post.php:4100
get_all_page_ids post.php:4133
get_page post.php:4160
get_page_by_path post.php:4177
get_page_by_title post.php:4248
get_page_children post.php:4290
get_page_hierarchy post.php:4314
_page_traverse_name post.php:4345
get_page_uri post.php:4364
get_pages post.php:4416
is_local_attachment post.php:4683
wp_insert_attachment post.php:4719
wp_delete_attachment post.php:4750
wp_get_attachment_metadata post.php:4858
wp_update_attachment_metadata post.php:4889
wp_get_attachment_url post.php:4916
wp_get_attachment_thumb_file post.php:4974
wp_get_attachment_thumb_url post.php:5005
wp_attachment_is_image post.php:5040
wp_mime_type_icon post.php:5065
wp_check_for_changed_slugs post.php:5198
get_private_posts_cap_sql post.php:5231
get_posts_by_author_sql post.php:5250
get_lastpostdate post.php:5317
get_lastpostmodified post.php:5343
_get_last_post_time post.php:5371
update_post_cache post.php:5416
clean_post_cache post.php:5439
update_post_caches post.php:5492
update_postmeta_cache post.php:5539
clean_attachment_cache post.php:5558
_transition_post_status post.php:5599
_future_post_hook post.php:5649
_publish_post_hook post.php:5664
wp_get_post_parent_id post.php:5695
wp_check_post_hierarchy_for_loops post.php:5716
set_post_thumbnail post.php:5753
delete_post_thumbnail post.php:5773
wp_delete_auto_drafts post.php:5787
_update_term_count_on_transition_post_status post.php:5811
_prime_post_caches post.php:5831
the_id post-template.php:16
get_the_id post-template.php:28
the_title post-template.php:43
the_title_attribute post-template.php:79
get_the_title post-template.php:111
the_guid post-template.php:175
get_the_guid post-template.php:191
the_content post-template.php:212
get_the_content post-template.php:236
_convert_urlencoded_to_entities post-template.php:308
the_excerpt post-template.php:317
get_the_excerpt post-template.php:339
has_excerpt post-template.php:370
post_class post-template.php:383
get_post_class post-template.php:406
body_class post-template.php:497
get_body_class post-template.php:510
post_password_required post-template.php:693
wp_link_pages post-template.php:745
_wp_link_page post-template.php:840
post_custom post-template.php:883
the_meta post-template.php:901
wp_dropdown_pages post-template.php:938
wp_list_pages post-template.php:1018
wp_page_menu post-template.php:1117
walk_page_tree post-template.php:1194
walk_page_dropdown_tree post-template.php:1216
the_attachment_link post-template.php:1444
wp_get_attachment_link post-template.php:1467
prepend_attachment post-template.php:1510
get_the_password_form post-template.php:1562
is_page_template post-template.php:1597
get_page_template_slug post-template.php:1624
wp_post_revision_title post-template.php:1645
wp_post_revision_title_expanded post-template.php:1682
wp_list_post_revisions post-template.php:1736
_wp_post_revision_fields revision.php:23
wp_save_post_revision revision.php:85
wp_get_post_autosave revision.php:184
wp_is_post_revision revision.php:207
wp_is_post_autosave revision.php:222
_wp_put_post_revision revision.php:244
wp_get_post_revision revision.php:289
wp_restore_post_revision revision.php:322
wp_delete_post_revision revision.php:382
wp_get_post_revisions revision.php:415
wp_revisions_enabled revision.php:444
wp_revisions_to_keep revision.php:459
_set_preview revision.php:489
_show_post_preview revision.php:516
_wp_preview_terms_filter revision.php:534
_wp_get_post_revision_version revision.php:555
_wp_upgrade_revisions_of_post revision.php:579
get_post_format post-formats.php:17
has_post_format post-formats.php:45
set_post_format post-formats.php:66
get_post_format_strings post-formats.php:90
get_post_format_slugs post-formats.php:115
get_post_format_string post-formats.php:130
get_post_format_link post-formats.php:146
_post_format_request post-formats.php:159
_post_format_link post-formats.php:178
_post_format_get_term post-formats.php:197
_post_format_get_terms post-formats.php:211
_post_format_wp_get_object_terms post-formats.php:235
has_post_thumbnail post-thumbnail-template.php:20
get_post_thumbnail_id post-thumbnail-template.php:32
the_post_thumbnail post-thumbnail-template.php:45
update_post_thumbnail_cache post-thumbnail-template.php:56
get_the_post_thumbnail post-thumbnail-template.php:85
get_categories category.php:22
get_category category.php:73
get_category_by_path category.php:103
get_category_by_slug category.php:154
get_cat_id category.php:170
get_cat_name category.php:185
cat_is_ancestor_of category.php:205
sanitize_category category.php:219
sanitize_category_field category.php:235
get_tags category.php:251
get_tag category.php:290
clean_category_cache category.php:304
_make_cat_compat category.php:327
get_category_link category-template.php:18
get_category_parents category-template.php:42
get_the_category category-template.php:74
_usort_terms_by_name category-template.php:108
_usort_terms_by_id category-template.php:125
get_the_category_by_id category-template.php:142
get_the_category_list category-template.php:162
in_category category-template.php:257
the_category category-template.php:273
category_description category-template.php:285
wp_dropdown_categories category-template.php:324
wp_list_categories category-template.php:465
wp_tag_cloud category-template.php:594
default_topic_count_scale category-template.php:643
wp_generate_tag_cloud category-template.php:681
_wp_object_name_sort_cb category-template.php:832
_wp_object_count_sort_cb category-template.php:842
walk_category_tree category-template.php:857
walk_category_dropdown_tree category-template.php:875
get_tag_link category-template.php:1127
get_the_tags category-template.php:1147
get_the_tag_list category-template.php:1172
the_tags category-template.php:1197
tag_description category-template.php:1211
term_description category-template.php:1224
get_the_terms category-template.php:1246
get_the_term_list category-template.php:1285
the_terms category-template.php:1328
has_category category-template.php:1357
has_tag category-template.php:1378
has_term category-template.php:1396
check_comment comment.php:41
get_approved_comments comment.php:117
get_comment comment.php:136
get_comments comment.php:194
get_comment_statuses comment.php:530
get_lastcommentmodified comment.php:552
get_comment_count comment.php:591
add_comment_meta comment.php:654
delete_comment_meta comment.php:674
get_comment_meta comment.php:691
update_comment_meta comment.php:713
wp_set_comment_cookies comment.php:726
sanitize_comment_cookies comment.php:752
wp_allow_comment comment.php:813
check_comment_flood_db comment.php:931
separate_comments comment.php:976
get_comment_pages_count comment.php:1003
get_page_of_comment comment.php:1050
wp_blacklist_check comment.php:1111
wp_count_comments comment.php:1171
wp_delete_comment comment.php:1238
wp_trash_comment comment.php:1304
wp_untrash_comment comment.php:1346
wp_spam_comment comment.php:1388
wp_unspam_comment comment.php:1425
wp_get_comment_status comment.php:1466
wp_transition_comment_status comment.php:1507
wp_get_current_commenter comment.php:1575
wp_insert_comment comment.php:1614
wp_filter_comment comment.php:1675
wp_throttle_comment_flood comment.php:1737
wp_new_comment comment.php:1761
wp_set_comment_status comment.php:1842
wp_update_comment comment.php:1911
wp_defer_comment_counting comment.php:1988
wp_update_comment_count comment.php:2019
wp_update_comment_count_now comment.php:2049
discover_pingback_server_uri comment.php:2096
do_all_pings comment.php:2160
do_trackbacks comment.php:2193
generic_ping comment.php:2240
pingback comment.php:2263
privacy_ping_filter comment.php:2351
trackback comment.php:2372
weblog_ping comment.php:2406
pingback_ping_source_uri comment.php:2432
xmlrpc_pingback_error comment.php:2448
clean_comment_cache comment.php:2465
update_comment_cache comment.php:2483
_close_comments_for_old_posts comment.php:2502
_close_comments_for_old_post comment.php:2539
get_comment_author comment-template.php:22
comment_author comment-template.php:51
get_comment_author_email comment-template.php:72
comment_author_email comment-template.php:97
comment_author_email_link comment-template.php:125
get_comment_author_email_link comment-template.php:148
get_comment_author_link comment-template.php:184
comment_author_link comment-template.php:214
get_comment_author_ip comment-template.php:227
comment_author_ip comment-template.php:248
get_comment_author_url comment-template.php:261
comment_author_url comment-template.php:283
get_comment_author_url_link comment-template.php:315
comment_author_url_link comment-template.php:346
comment_class comment-template.php:362
get_comment_class comment-template.php:381
get_comment_date comment-template.php:462
comment_date comment-template.php:488
get_comment_excerpt comment-template.php:505
comment_excerpt comment-template.php:540
get_comment_id comment-template.php:559
comment_id comment-template.php:576
get_comment_link comment-template.php:591
get_comments_link comment-template.php:647
comments_link comment-template.php:668
get_comments_number comment-template.php:684
comments_number comment-template.php:715
get_comments_number_text comment-template.php:731
get_comment_text comment-template.php:766
comment_text comment-template.php:793
get_comment_time comment-template.php:822
comment_time comment-template.php:851
get_comment_type comment-template.php:863
comment_type comment-template.php:887
get_trackback_url comment-template.php:915
trackback_url comment-template.php:940
trackback_rdf comment-template.php:958
comments_open comment-template.php:989
pings_open comment-template.php:1014
wp_comment_form_unfiltered_html_nonce comment-template.php:1045
comments_template comment-template.php:1081
comments_popup_script comment-template.php:1186
comments_popup_link comment-template.php:1221
get_comment_reply_link comment-template.php:1305
comment_reply_link comment-template.php:1368
get_post_reply_link comment-template.php:1395
post_reply_link comment-template.php:1444
get_cancel_comment_reply_link comment-template.php:1455
cancel_comment_reply_link comment-template.php:1482
get_comment_id_fields comment-template.php:1494
comment_id_fields comment-template.php:1521
comment_form_title comment-template.php:1540
wp_list_comments comment-template.php:1911
comment_form comment-template.php:2067
add_rewrite_rule rewrite.php:19
add_rewrite_tag rewrite.php:38
add_permastruct rewrite.php:65
add_feed rewrite.php:86
flush_rewrite_rules rewrite.php:106
add_rewrite_endpoint rewrite.php:255
_wp_filter_taxonomy_base rewrite.php:271
url_to_postid rewrite.php:289
get_bloginfo_rss feed.php:25
bloginfo_rss feed.php:53
get_default_feed feed.php:78
get_wp_title_rss feed.php:99
wp_title_rss feed.php:130
get_the_title_rss feed.php:151
the_title_rss feed.php:170
get_the_content_feed feed.php:183
the_content_feed feed.php:211
the_excerpt_rss feed.php:220
the_permalink_rss feed.php:237
comments_link_feed feed.php:254
comment_guid feed.php:273
get_comment_guid feed.php:285
comment_link feed.php:299
get_comment_author_rss feed.php:320
comment_author_rss feed.php:338
comment_text_rss feed.php:348
get_the_category_rss feed.php:373
the_category_rss feed.php:424
html_type_rss feed.php:435
rss_enclosure feed.php:459
atom_enclosure feed.php:499
prep_atom_text_construct feed.php:537
self_link feed.php:570
feed_content_type feed.php:590
fetch_feed feed.php:627
get_bookmark bookmark.php:20
get_bookmark_field bookmark.php:71
get_bookmarks bookmark.php:118
sanitize_bookmark bookmark.php:306
sanitize_bookmark_field bookmark.php:356
clean_bookmark_cache bookmark.php:412
_walk_bookmarks bookmark-template.php:51
wp_list_bookmarks bookmark-template.php:200
wp_kses kses.php:486
wp_kses_allowed_html kses.php:505
wp_kses_hook kses.php:561
wp_kses_version kses.php:582
wp_kses_split kses.php:598
_wp_kses_split_callback kses.php:611
wp_kses_split2 kses.php:637
wp_kses_attr kses.php:697
wp_kses_hair kses.php:780
wp_kses_check_attr_val kses.php:906
wp_kses_bad_protocol kses.php:978
wp_kses_no_null kses.php:1003
wp_kses_stripslashes kses.php:1022
wp_kses_array_lc kses.php:1034
wp_kses_js_entities kses.php:1058
wp_kses_html_error kses.php:1073
wp_kses_bad_protocol_once kses.php:1089
wp_kses_bad_protocol_once2 kses.php:1120
wp_kses_normalize_entities kses.php:1150
wp_kses_named_entities kses.php:1175
wp_kses_normalize_entities2 kses.php:1197
wp_kses_normalize_entities3 kses.php:1223
valid_unicode kses.php:1237
wp_kses_decode_entities kses.php:1256
_wp_kses_decode_entities_chr kses.php:1269
_wp_kses_decode_entities_chr_hexdec kses.php:1279
wp_filter_kses kses.php:1292
wp_kses_data kses.php:1305
wp_filter_post_kses kses.php:1320
wp_kses_post kses.php:1335
wp_filter_nohtml_kses kses.php:1347
kses_init_filters kses.php:1363
kses_remove_filters kses.php:1391
kses_init kses.php:1421
safecss_filter_attr kses.php:1436
_wp_add_global_attributes kses.php:1502
wp_schedule_single_event cron.php:22
wp_schedule_event cron.php:70
wp_reschedule_event cron.php:103
wp_unschedule_event cron.php:148
wp_clear_scheduled_hook cron.php:167
wp_next_scheduled cron.php:199
spawn_cron cron.php:218
wp_cron cron.php:310
wp_get_schedules cron.php:366
wp_get_schedule cron.php:391
_get_cron_array cron.php:415
_set_cron_array cron.php:436
_upgrade_cron_array cron.php:452
get_postdata deprecated.php:26
start_wp deprecated.php:59
the_category_id deprecated.php:81
the_category_head deprecated.php:105
previous_post deprecated.php:136
next_post deprecated.php:173
user_can_create_post deprecated.php:207
user_can_create_draft deprecated.php:227
user_can_edit_post deprecated.php:247
user_can_delete_post deprecated.php:276
user_can_set_post_date deprecated.php:296
user_can_edit_post_date deprecated.php:316
user_can_edit_post_comments deprecated.php:336
user_can_delete_post_comments deprecated.php:356
user_can_edit_user deprecated.php:375
get_linksbyname deprecated.php:407
wp_get_linksbyname deprecated.php:432
get_linkobjectsbyname deprecated.php:473
get_linkobjects deprecated.php:527
get_linksbyname_withrating deprecated.php:560
get_links_withrating deprecated.php:588
get_autotoggle deprecated.php:605
list_cats deprecated.php:636
wp_list_cats deprecated.php:655
dropdown_cats deprecated.php:696
list_authors deprecated.php:731
wp_get_post_cats deprecated.php:748
wp_set_post_cats deprecated.php:766
get_archives deprecated.php:785
get_author_link deprecated.php:804
link_pages deprecated.php:831
get_settings deprecated.php:850
permalink_link deprecated.php:864
permalink_single_rss deprecated.php:879
wp_get_links deprecated.php:896
get_links deprecated.php:950
get_links_list deprecated.php:1044
links_popup_script deprecated.php:1090
get_linkrating deprecated.php:1103
get_linkcatname deprecated.php:1119
comments_rss_link deprecated.php:1148
get_category_rss_link deprecated.php:1165
get_author_rss_link deprecated.php:1187
comments_rss deprecated.php:1206
create_user deprecated.php:1224
gzip_compression deprecated.php:1234
get_commentdata deprecated.php:1252
get_catname deprecated.php:1268
get_category_children deprecated.php:1287
get_all_category_ids deprecated.php:1321
get_the_author_description deprecated.php:1342
the_author_description deprecated.php:1355
get_the_author_login deprecated.php:1370
the_author_login deprecated.php:1383
get_the_author_firstname deprecated.php:1398
the_author_firstname deprecated.php:1411
get_the_author_lastname deprecated.php:1426
the_author_lastname deprecated.php:1439
get_the_author_nickname deprecated.php:1454
the_author_nickname deprecated.php:1467
get_the_author_email deprecated.php:1482
the_author_email deprecated.php:1495
get_the_author_icq deprecated.php:1510
the_author_icq deprecated.php:1523
get_the_author_yim deprecated.php:1538
the_author_yim deprecated.php:1551
get_the_author_msn deprecated.php:1566
the_author_msn deprecated.php:1579
get_the_author_aim deprecated.php:1594
the_author_aim deprecated.php:1607
get_author_name deprecated.php:1623
get_the_author_url deprecated.php:1638
the_author_url deprecated.php:1651
get_the_author_id deprecated.php:1666
the_author_id deprecated.php:1679
the_content_rss deprecated.php:1714
make_url_footnote deprecated.php:1760
_c deprecated.php:1800
translate_with_context deprecated.php:1819
_nc deprecated.php:1836
__ngettext deprecated.php:1849
__ngettext_noop deprecated.php:1863
get_alloptions deprecated.php:1880
get_the_attachment_link deprecated.php:1899
get_attachment_icon_src deprecated.php:1928
get_attachment_icon deprecated.php:1971
get_attachment_innerhtml deprecated.php:2028
get_link deprecated.php:2054
sanitize_url deprecated.php:2071
clean_url deprecated.php:2093
js_escape deprecated.php:2114
wp_specialchars deprecated.php:2126
attribute_escape deprecated.php:2147
register_sidebar_widget deprecated.php:2172
unregister_sidebar_widget deprecated.php:2204
register_widget_control deprecated.php:2229
unregister_widget_control deprecated.php:2263
delete_usermeta deprecated.php:2281
get_usermeta deprecated.php:2328
update_usermeta deprecated.php:2382
get_users_of_blog deprecated.php:2435
automatic_feed_links deprecated.php:2455
get_profile deprecated.php:2472
get_usernumposts deprecated.php:2489
funky_javascript_callback deprecated.php:2504
funky_javascript_fix deprecated.php:2521
is_taxonomy deprecated.php:2545
is_term deprecated.php:2563
is_plugin_page deprecated.php:2579
update_category_cache deprecated.php:2602
wp_timezone_supported deprecated.php:2616
the_editor deprecated.php:2636
get_user_metavalues deprecated.php:2652
sanitize_user_object deprecated.php:2686
get_boundary_post_rel_link deprecated.php:2725
start_post_rel_link deprecated.php:2763
get_index_rel_link deprecated.php:2777
index_rel_link deprecated.php:2790
get_parent_post_rel_link deprecated.php:2805
parent_post_rel_link deprecated.php:2833
wp_admin_bar_dashboard_view_site_menu deprecated.php:2845
is_blog_user deprecated.php:2871
debug_fopen deprecated.php:2885
debug_fwrite deprecated.php:2898
debug_fclose deprecated.php:2912
get_themes deprecated.php:2930
get_theme deprecated.php:2962
get_current_theme deprecated.php:2981
clean_pre deprecated.php:3002
add_custom_image_header deprecated.php:3030
remove_custom_image_header deprecated.php:3051
add_custom_background deprecated.php:3068
remove_custom_background deprecated.php:3088
get_theme_data deprecated.php:3104
update_page_cache deprecated.php:3140
clean_page_cache deprecated.php:3159
wp_explain_nonce deprecated.php:3178
sticky_class deprecated.php:3193
_get_post_ancestors deprecated.php:3209
wp_load_image deprecated.php:3223
image_resize deprecated.php:3269
wp_get_single_post deprecated.php:3304
user_pass_ok deprecated.php:3321
_save_post_hook deprecated.php:3336
gd_edit_image_support deprecated.php:3348
wp_convert_bytes_to_hr deprecated.php:3383
_search_terms_tidy deprecated.php:3408
rich_edit_exists deprecated.php:3424
default_topic_count_text deprecated.php:3441
format_to_post deprecated.php:3456
like_escape deprecated.php:3471
url_is_accessable_via_ssl deprecated.php:3488
wp_default_scripts script-loader.php:50
wp_default_styles script-loader.php:566
wp_prototype_before_jquery script-loader.php:674
wp_just_in_time_script_localization script-loader.php:698
wp_style_loader_src script-loader.php:727
print_head_scripts script-loader.php:768
print_footer_scripts script-loader.php:803
_print_scripts script-loader.php:831
wp_print_head_scripts script-loader.php:867
_wp_footer_scripts script-loader.php:886
wp_print_footer_scripts script-loader.php:896
wp_enqueue_scripts script-loader.php:913
print_admin_styles script-loader.php:927
print_late_styles script-loader.php:957
_print_styles script-loader.php:984
script_concat_settings script-loader.php:1013
wp_print_scripts functions.wp-scripts.php:27
wp_register_script functions.wp-scripts.php:73
wp_localize_script functions.wp-scripts.php:113
wp_deregister_script functions.wp-scripts.php:139
wp_enqueue_script functions.wp-scripts.php:195
wp_dequeue_script functions.wp-scripts.php:223
wp_script_is functions.wp-scripts.php:248
wp_print_styles functions.wp-styles.php:25
wp_add_inline_style functions.wp-styles.php:68
wp_register_style functions.wp-styles.php:103
wp_deregister_style functions.wp-styles.php:125
wp_enqueue_style functions.wp-styles.php:158
wp_dequeue_style functions.wp-styles.php:184
wp_style_is functions.wp-styles.php:208
wp_style_add_data functions.wp-styles.php:242
create_initial_taxonomies taxonomy.php:21
get_taxonomies taxonomy.php:144
get_object_taxonomies taxonomy.php:169
get_taxonomy taxonomy.php:207
taxonomy_exists taxonomy.php:228
is_taxonomy_hierarchical taxonomy.php:250
register_taxonomy taxonomy.php:324
get_taxonomy_labels taxonomy.php:465
register_taxonomy_for_object_type taxonomy.php:507
unregister_taxonomy_for_object_type taxonomy.php:531
get_objects_in_term taxonomy.php:578
get_tax_sql taxonomy.php:623
get_term taxonomy.php:952
get_term_by taxonomy.php:1043
get_term_children taxonomy.php:1111
get_term_field taxonomy.php:1153
get_term_to_edit taxonomy.php:1182
get_terms taxonomy.php:1265
term_exists taxonomy.php:1662
term_is_ancestor_of taxonomy.php:1723
sanitize_term taxonomy.php:1755
sanitize_term_field taxonomy.php:1805
wp_count_terms taxonomy.php:1965
wp_delete_object_term_relationships taxonomy.php:1993
wp_delete_term taxonomy.php:2027
wp_delete_category taxonomy.php:2178
wp_get_object_terms taxonomy.php:2212
wp_insert_term taxonomy.php:2396
wp_set_object_terms taxonomy.php:2618
wp_add_object_terms taxonomy.php:2740
wp_remove_object_terms taxonomy.php:2755
wp_unique_term_slug taxonomy.php:2842
wp_update_term taxonomy.php:2915
wp_defer_term_counting taxonomy.php:3112
wp_update_term_count taxonomy.php:3141
wp_update_term_count_now taxonomy.php:3176
clean_object_term_cache taxonomy.php:3221
clean_term_cache taxonomy.php:3254
get_object_term_cache taxonomy.php:3316
update_object_term_cache taxonomy.php:3341
update_term_cache taxonomy.php:3396
_get_term_hierarchy taxonomy.php:3422
_get_term_children taxonomy.php:3454
_pad_term_counts taxonomy.php:3509
_update_post_term_count taxonomy.php:3572
_update_generic_term_count taxonomy.php:3620
get_term_link taxonomy.php:3644
the_taxonomies taxonomy.php:3750
get_the_taxonomies taxonomy.php:3777
get_post_taxonomies taxonomy.php:3829
is_object_in_term taxonomy.php:3851
is_object_in_taxonomy taxonomy.php:3895
get_ancestors taxonomy.php:3914
wp_get_term_taxonomy_parent_id taxonomy.php:3957
wp_check_term_hierarchy_for_loops taxonomy.php:3979
wp_version_check update.php:23
wp_update_plugins update.php:185
wp_update_themes update.php:339
wp_maybe_auto_update update.php:483
wp_get_translation_updates update.php:496
wp_get_update_data update.php:520
_maybe_update_core update.php:574
_maybe_update_plugins update.php:597
_maybe_update_themes update.php:613
wp_schedule_update_checks update.php:626
redirect_canonical canonical.php:39
_remove_qs_args_if_not_in_url canonical.php:501
redirect_guess_404_permalink canonical.php:523
wp_redirect_admin_locations canonical.php:558
add_shortcode shortcodes.php:95
remove_shortcode shortcodes.php:111
remove_all_shortcodes shortcodes.php:128
shortcode_exists shortcodes.php:143
has_shortcode shortcodes.php:157
do_shortcode shortcodes.php:193
get_shortcode_regex shortcodes.php:228
do_shortcode_tag shortcodes.php:277
shortcode_parse_atts shortcodes.php:309
shortcode_atts shortcodes.php:349
strip_shortcodes shortcodes.php:386
strip_shortcode_tag shortcodes.php:401
image_constrain_size_for_editor media.php:36
image_hwstring media.php:115
image_downsize media.php:146
add_image_size media.php:225
has_image_size media.php:243
remove_image_size media.php:257
set_post_thumbnail_size media.php:280
get_image_tag media.php:305
wp_constrain_dimensions media.php:359
image_resize_dimensions media.php:426
image_make_intermediate_size media.php:530
image_get_intermediate_size media.php:573
get_intermediate_image_sizes media.php:628
wp_get_attachment_image_src media.php:657
wp_get_attachment_image media.php:695
_wp_post_thumbnail_class_filter media.php:746
_wp_post_thumbnail_class_filter_add media.php:756
_wp_post_thumbnail_class_filter_remove media.php:765
img_caption_shortcode media.php:797
gallery_shortcode media.php:906
wp_underscore_playlist_templates media.php:1105
wp_playlist_scripts media.php:1145
wp_playlist_shortcode media.php:1190
wp_mediaelement_fallback media.php:1417
wp_get_audio_extensions media.php:1435
wp_get_attachment_id3_keys media.php:1456
wp_audio_shortcode media.php:1504
wp_get_video_extensions media.php:1662
wp_video_shortcode media.php:1701
previous_image_link media.php:1909
next_image_link media.php:1921
adjacent_image_link media.php:1934
get_attachment_taxonomies media.php:1982
get_taxonomies_for_attachments media.php:2025
wp_imagecreatetruecolor media.php:2052
wp_embed_register_handler media.php:2067
wp_embed_unregister_handler media.php:2078
wp_embed_defaults media.php:2099
wp_expand_dimensions media.php:2132
wp_oembed_get media.php:2154
wp_oembed_add_provider media.php:2172
wp_oembed_remove_provider media.php:2193
wp_maybe_load_embeds media.php:2218
wp_embed_handler_googlevideo media.php:2267
wp_embed_handler_youtube media.php:2304
wp_embed_handler_audio media.php:2333
wp_embed_handler_video media.php:2360
wp_convert_hr_to_bytes media.php:2389
wp_max_upload_size media.php:2408
wp_get_image_editor media.php:2434
wp_image_editor_supports media.php:2470
_wp_image_editor_choose media.php:2483
wp_plupload_default_settings media.php:2525
wp_prepare_attachment_for_js media.php:2596
wp_enqueue_media media.php:2782
get_attached_media media.php:3084
get_media_embedded_in_content media.php:3131
get_post_galleries media.php:3159
get_post_gallery media.php:3210
get_post_galleries_images media.php:3235
get_post_gallery_images media.php:3248
wp_maybe_generate_attachment_metadata media.php:3260
attachment_url_to_postid media.php:3288
wpview_media_sandbox_styles media.php:3313
_wp_http_get_object http.php:22
wp_safe_remote_request http.php:46
wp_safe_remote_get http.php:67
wp_safe_remote_post http.php:88
wp_safe_remote_head http.php:109
wp_remote_request http.php:151
wp_remote_get http.php:168
wp_remote_post http.php:185
wp_remote_head http.php:202
wp_remote_retrieve_headers http.php:215
wp_remote_retrieve_header http.php:231
wp_remote_retrieve_response_code http.php:251
wp_remote_retrieve_response_message http.php:268
wp_remote_retrieve_body http.php:283
wp_http_supports http.php:300
get_http_origin http.php:329
get_allowed_http_origins http.php:351
is_allowed_http_origin http.php:387
send_origin_headers http.php:420
wp_http_validate_url http.php:446
allowed_http_request_hosts http.php:523
ms_allowed_http_request_hosts http.php:540
register_widget widgets.php:515
unregister_widget widgets.php:535
register_sidebars widgets.php:564
register_sidebar widgets.php:639
unregister_sidebar widgets.php:682
wp_register_sidebar_widget widgets.php:709
wp_widget_description widgets.php:766
wp_sidebar_description widgets.php:787
wp_unregister_sidebar_widget widgets.php:804
wp_register_widget_control widgets.php:837
_register_widget_update_callback widgets.php:884
_register_widget_form_callback widgets.php:902
wp_unregister_widget_control widgets.php:939
dynamic_sidebar widgets.php:955
is_active_widget widgets.php:1138
is_dynamic_sidebar widgets.php:1169
is_active_sidebar widgets.php:1190
wp_get_sidebars_widgets widgets.php:1221
wp_set_sidebars_widgets widgets.php:1260
wp_get_widget_defaults widgets.php:1274
wp_convert_widget_settings widgets.php:1292
the_widget widgets.php:1353
_get_widget_id_base widgets.php:1384
_wp_sidebars_changed widgets.php:1394
retrieve_widgets widgets.php:1412
wp_get_nav_menu_object nav-menu.php:21
is_nav_menu nav-menu.php:49
register_nav_menus nav-menu.php:73
unregister_nav_menu nav-menu.php:88
register_nav_menu nav-menu.php:109
get_registered_nav_menus nav-menu.php:118
get_nav_menu_locations nav-menu.php:132
has_nav_menu nav-menu.php:144
is_nav_menu_item nav-menu.php:163
wp_create_nav_menu nav-menu.php:175
wp_delete_nav_menu nav-menu.php:187
wp_update_nav_menu_object nav-menu.php:232
wp_update_nav_menu_item nav-menu.php:311
wp_get_nav_menus nav-menu.php:468
_sort_nav_menu_items nav-menu.php:495
_is_valid_nav_menu_item nav-menu.php:524
wp_get_nav_menu_items nav-menu.php:540
wp_setup_nav_menu_item nav-menu.php:644
wp_get_associated_nav_menu_items nav-menu.php:782
_wp_delete_post_menu_item nav-menu.php:826
_wp_delete_tax_menu_item nav-menu.php:845
_wp_auto_add_pages_to_menu nav-menu.php:866
wp_nav_menu nav-menu-template.php:226
_wp_menu_item_classes_by_context nav-menu-template.php:437
walk_nav_menu_tree nav-menu-template.php:658
_nav_menu_item_id_use_once nav-menu-template.php:671
_wp_admin_bar_init admin-bar.php:18
wp_admin_bar_render admin-bar.php:62
wp_admin_bar_wp_menu admin-bar.php:105
wp_admin_bar_sidebar_toggle admin-bar.php:165
wp_admin_bar_my_account_item admin-bar.php:182
wp_admin_bar_my_account_menu admin-bar.php:213
wp_admin_bar_site_menu admin-bar.php:262
wp_admin_bar_my_sites_menu admin-bar.php:331
wp_admin_bar_shortlink_menu admin-bar.php:458
wp_admin_bar_edit_menu admin-bar.php:482
wp_admin_bar_new_content_menu admin-bar.php:561
wp_admin_bar_comments_menu admin-bar.php:628
wp_admin_bar_appearance_menu admin-bar.php:654
wp_admin_bar_updates_menu admin-bar.php:697
wp_admin_bar_search_menu admin-bar.php:724
wp_admin_bar_add_secondary_groups admin-bar.php:751
wp_admin_bar_header admin-bar.php:773
_admin_bar_bump_cb admin-bar.php:783
show_admin_bar admin-bar.php:805
is_admin_bar_showing admin-bar.php:817
_get_admin_bar_pref admin-bar.php:862
wp_is_mobile vars.php:123
wp_set_current_user pluggable.php:26
wp_get_current_user pluggable.php:55
get_currentuserinfo pluggable.php:79
get_userdata pluggable.php:137
get_user_by pluggable.php:152
cache_users pluggable.php:173
wp_mail pluggable.php:225
wp_authenticate pluggable.php:541
wp_logout pluggable.php:588
wp_validate_auth_cookie pluggable.php:617
wp_generate_auth_cookie pluggable.php:723
wp_parse_auth_cookie pluggable.php:766
wp_set_auth_cookie pluggable.php:819
wp_clear_auth_cookie pluggable.php:927
is_user_logged_in pluggable.php:964
auth_redirect pluggable.php:980
check_admin_referer pluggable.php:1065
check_ajax_referer pluggable.php:1099
wp_redirect pluggable.php:1142
wp_sanitize_redirect pluggable.php:1187
wp_safe_redirect pluggable.php:1216
wp_validate_redirect pluggable.php:1243
wp_notify_postauthor pluggable.php:1295
wp_notify_moderator pluggable.php:1489
wp_password_change_notification pluggable.php:1608
wp_new_user_notification pluggable.php:1632
wp_nonce_tick pluggable.php:1668
wp_verify_nonce pluggable.php:1695
wp_create_nonce pluggable.php:1743
wp_salt pluggable.php:1793
wp_hash pluggable.php:1874
wp_hash_password pluggable.php:1896
wp_check_password pluggable.php:1931
wp_generate_password pluggable.php:1982
wp_rand pluggable.php:2015
wp_set_password pluggable.php:2071
get_avatar pluggable.php:2093
wp_text_diff pluggable.php:2231
set_current_user pluggable-deprecated.php:33
get_userdatabylogin pluggable-deprecated.php:50
get_user_by_email pluggable-deprecated.php:67
wp_setcookie pluggable-deprecated.php:89
wp_clearcookie pluggable-deprecated.php:107
wp_get_cookie_login pluggable-deprecated.php:128
wp_login pluggable-deprecated.php:156
wp_widget_rss_output default-widgets.php:1009
wp_widget_rss_form default-widgets.php:1113
wp_widget_rss_process default-widgets.php:1187
wp_widgets_init default-widgets.php:1384
is_rtl locale.php:365
twentyfourteen_content_width functions.php:125
twentyfourteen_get_featured_posts functions.php:139
twentyfourteen_has_featured_posts functions.php:157
twentyfourteen_widgets_init functions.php:166
twentyfourteen_font_url functions.php:207
twentyfourteen_scripts functions.php:225
twentyfourteen_admin_fonts functions.php:268
twentyfourteen_body_classes functions.php:400
twentyfourteen_post_classes functions.php:451
twentyfourteen_wp_title functions.php:473
twentyfourteen_setup functions.php:58
twentyfourteen_the_attached_image functions.php:279
twentyfourteen_list_authors functions.php:346
twentyfourteen_custom_header_setup custom-header.php:19
twentyfourteen_header_style custom-header.php:57
twentyfourteen_admin_header_style custom-header.php:99
twentyfourteen_admin_header_image custom-header.php:137
twentyfourteen_categorized_blog template-tags.php:130
twentyfourteen_category_transient_flusher template-tags.php:157
twentyfourteen_post_thumbnail template-tags.php:172
twentyfourteen_paging_nav template-tags.php:19
twentyfourteen_post_nav template-tags.php:74
twentyfourteen_posted_on template-tags.php:107
twentyfourteen_customize_register customizer.php:17
twentyfourteen_sanitize_layout customizer.php:69
twentyfourteen_customize_preview_js customizer.php:82
twentyfourteen_contextual_help customizer.php:92
Array
(
[145] => WP
[146] => WP_MatchesMapRegex
[147] => WP_Error
[148] => Translation_Entry
[149] => Translations
[150] => Gettext_Translations
[151] => NOOP_Translations
[152] => POMO_Reader
[153] => POMO_FileReader
[154] => POMO_StringReader
[155] => POMO_CachedFileReader
[156] => POMO_CachedIntFileReader
[157] => MO
[158] => wpdb
[159] => WP_Object_Cache
[160] => Walker
[161] => WP_Ajax_Response
[162] => WP_Roles
[163] => WP_Role
[164] => WP_User
[165] => WP_Query
[166] => WP_Date_Query
[167] => WP_Theme
[168] => WP_User_Query
[169] => WP_Session_Tokens
[170] => WP_User_Meta_Session_Tokens
[171] => WP_Meta_Query
[172] => WP_Post
[173] => Walker_Page
[174] => Walker_PageDropdown
[175] => Walker_Category
[176] => Walker_CategoryDropdown
[177] => WP_Comment_Query
[178] => Walker_Comment
[179] => WP_Rewrite
[180] => WP_Dependencies
[181] => _WP_Dependency
[182] => WP_Scripts
[183] => WP_Styles
[184] => WP_Tax_Query
[185] => WP_Embed
[186] => WP_Http
[187] => WP_Http_Streams
[188] => WP_HTTP_Fsockopen
[189] => WP_Http_Curl
[190] => WP_HTTP_Proxy
[191] => WP_Http_Cookie
[192] => WP_Http_Encoding
[193] => WP_Widget
[194] => WP_Widget_Factory
[195] => Walker_Nav_Menu
[196] => wp_atom_server
[197] => WP_Widget_Pages
[198] => WP_Widget_Links
[199] => WP_Widget_Search
[200] => WP_Widget_Archives
[201] => WP_Widget_Meta
[202] => WP_Widget_Calendar
[203] => WP_Widget_Text
[204] => WP_Widget_Categories
[205] => WP_Widget_Recent_Posts
[206] => WP_Widget_Recent_Comments
[207] => WP_Widget_RSS
[208] => WP_Widget_Tag_Cloud
[209] => WP_Nav_Menu_Widget
[210] => WP_Locale
[211] => Featured_Content
[212] => Twenty_Fourteen_Ephemera_Widget
[213] => WP_Admin_Bar
)
Array
(
[START_TIME] => 1409866492.2958
[START_MEMORY] => 239424
[B_FILENAME] => /tmp/wordpress.debug.txt
[WP_USE_THEMES] => 1
[ABSPATH] => /srv/www/wordpress-trunk/
[DB_NAME] => wordpress_trunk
[DB_USER] => wp
[DB_PASSWORD] => wp
[DB_HOST] => localhost
[DB_CHARSET] => utf8
[DB_COLLATE] =>
[AUTH_KEY] => q]#>B@0,BoqLl)XOsh9R/*V_:j&|W-I|{Fuk1>D9m*O@-QQ}uAu4*vTFtd%|$1FK
[SECURE_AUTH_KEY] => A{{xlO:Fb1fL0.NbMac])zc+W`jxzN1`(4Y(bwc6_P3<7vXyRCgdrARVQc|tqU0Z
[LOGGED_IN_KEY] => 3,!2L1tX*)^mM$U3x@,,SFBt]mj#y3P::%Y|9f2=HbsN-!mLP*9tETBIa&)IW9z~
[NONCE_KEY] => Vy|b,47+}xwZn}g-VR1IF9-f5,i<.oDf97T`AA ?75)NA}aiH6zOF`#>x%9|HaL:
[AUTH_SALT] => c.mKN.DzldA$X/5+S9d2}krAAX5dTEefyk}cbj1]4ditp)s;btQ4<_)|9IGgD-0z
[SECURE_AUTH_SALT] => =6~T~l@lP+>$~q,8$M0&O:k g}X7])lyW%r22& :0)I5kC1-McDOM)Rm[[:[S-Co
[LOGGED_IN_SALT] => CiA8bXK?n[n]+%--DK4/AR,#<VYT124z70Q~kC]466n[)b}kErejqak,v2tAE<HB
[NONCE_SALT] => h-FaO5$ny2AFtRqb6Y0~WXD}!+A|)VxK]LY[&ZN5/Q1h~^r;4>]z`F3(jcQo7JY5
[WPLANG] =>
[WP_DEBUG] => 1
[WPINC] => wp-includes
[WP_MEMORY_LIMIT] => 40M
[WP_MAX_MEMORY_LIMIT] => 256M
[WP_CONTENT_DIR] => /srv/www/wordpress-trunk/wp-content
[WP_DEBUG_DISPLAY] => 1
[WP_DEBUG_LOG] =>
[WP_CACHE] =>
[MEDIA_TRASH] =>
[SHORTINIT] =>
[MINUTE_IN_SECONDS] => 60
[HOUR_IN_SECONDS] => 3600
[DAY_IN_SECONDS] => 86400
[WEEK_IN_SECONDS] => 604800
[YEAR_IN_SECONDS] => 31536000
[WP_LANG_DIR] => /srv/www/wordpress-trunk/wp-content/languages
[LANGDIR] => wp-content/languages
[EZSQL_VERSION] => WP1.25
[OBJECT] => OBJECT
[object] => OBJECT
[OBJECT_K] => OBJECT_K
[ARRAY_A] => ARRAY_A
[ARRAY_N] => ARRAY_N
[MULTISITE] =>
[EP_NONE] => 0
[EP_PERMALINK] => 1
[EP_ATTACHMENT] => 2
[EP_DATE] => 4
[EP_YEAR] => 8
[EP_MONTH] => 16
[EP_DAY] => 32
[EP_ROOT] => 64
[EP_COMMENTS] => 128
[EP_SEARCH] => 256
[EP_CATEGORIES] => 512
[EP_TAGS] => 1024
[EP_AUTHORS] => 2048
[EP_PAGES] => 4096
[EP_ALL_ARCHIVES] => 3644
[EP_ALL] => 8191
[CUSTOM_TAGS] =>
[WP_CONTENT_URL] => http://local.wordpress-trunk.dev/wp-content
[WP_PLUGIN_DIR] => /srv/www/wordpress-trunk/wp-content/plugins
[WP_PLUGIN_URL] => http://local.wordpress-trunk.dev/wp-content/plugins
[PLUGINDIR] => wp-content/plugins
[WPMU_PLUGIN_DIR] => /srv/www/wordpress-trunk/wp-content/mu-plugins
[WPMU_PLUGIN_URL] => http://local.wordpress-trunk.dev/wp-content/mu-plugins
[MUPLUGINDIR] => wp-content/mu-plugins
[COOKIEHASH] => 483a71a7cfaac793fe1bbdc1987389a8
[USER_COOKIE] => wordpressuser_483a71a7cfaac793fe1bbdc1987389a8
[PASS_COOKIE] => wordpresspass_483a71a7cfaac793fe1bbdc1987389a8
[AUTH_COOKIE] => wordpress_483a71a7cfaac793fe1bbdc1987389a8
[SECURE_AUTH_COOKIE] => wordpress_sec_483a71a7cfaac793fe1bbdc1987389a8
[LOGGED_IN_COOKIE] => wordpress_logged_in_483a71a7cfaac793fe1bbdc1987389a8
[TEST_COOKIE] => wordpress_test_cookie
[COOKIEPATH] => /
[SITECOOKIEPATH] => /
[ADMIN_COOKIE_PATH] => /wp-admin
[PLUGINS_COOKIE_PATH] => /wp-content/plugins
[COOKIE_DOMAIN] =>
[FORCE_SSL_ADMIN] =>
[AUTOSAVE_INTERVAL] => 60
[EMPTY_TRASH_DAYS] => 30
[WP_POST_REVISIONS] => 1
[WP_CRON_LOCK_TIMEOUT] => 60
[TEMPLATEPATH] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen
[STYLESHEETPATH] => /srv/www/wordpress-trunk/wp-content/themes/twentyfourteen
[WP_DEFAULT_THEME] => twentyfourteen
[BACKGROUND_COLOR] => f5f5f5
[HEADER_IMAGE_WIDTH] => 1260
[HEADER_IMAGE_HEIGHT] => 240
[HEADER_TEXTCOLOR] => fff
[NO_HEADER_TEXT] =>
[HEADER_IMAGE] =>
[BACKGROUND_IMAGE] =>
[SCRIPT_DEBUG] =>
)
<?php
...
// Load most of WordPress.
require( ABSPATH . WPINC . '/class-wp-walker.php' ); benchmark("class");
require( ABSPATH . WPINC . '/class-wp-ajax-response.php' ); benchmark("class");
require( ABSPATH . WPINC . '/formatting.php' ); benchmark("formatting");
require( ABSPATH . WPINC . '/capabilities.php' ); benchmark("capabilities");
require( ABSPATH . WPINC . '/query.php' ); benchmark("query");
require( ABSPATH . WPINC . '/date.php' ); benchmark("date");
require( ABSPATH . WPINC . '/theme.php' ); benchmark("theme");
require( ABSPATH . WPINC . '/class-wp-theme.php' ); benchmark("class");
require( ABSPATH . WPINC . '/template.php' ); benchmark("template");
require( ABSPATH . WPINC . '/user.php' ); benchmark("user");
require( ABSPATH . WPINC . '/session.php' ); benchmark("session");
require( ABSPATH . WPINC . '/meta.php' ); benchmark("meta");
require( ABSPATH . WPINC . '/general-template.php' ); benchmark("general");
require( ABSPATH . WPINC . '/link-template.php' ); benchmark("link");
require( ABSPATH . WPINC . '/author-template.php' ); benchmark("author");
require( ABSPATH . WPINC . '/post.php' ); benchmark("post");
require( ABSPATH . WPINC . '/post-template.php' ); benchmark("post");
require( ABSPATH . WPINC . '/revision.php' ); benchmark("revision");
require( ABSPATH . WPINC . '/post-formats.php' ); benchmark("post");
require( ABSPATH . WPINC . '/post-thumbnail-template.php' ); benchmark("post");
require( ABSPATH . WPINC . '/category.php' ); benchmark("category");
require( ABSPATH . WPINC . '/category-template.php' ); benchmark("category");
require( ABSPATH . WPINC . '/comment.php' ); benchmark("comment");
require( ABSPATH . WPINC . '/comment-template.php' ); benchmark("comment");
require( ABSPATH . WPINC . '/rewrite.php' ); benchmark("rewrite");
require( ABSPATH . WPINC . '/feed.php' ); benchmark("feed");
require( ABSPATH . WPINC . '/bookmark.php' ); benchmark("bookmark");
require( ABSPATH . WPINC . '/bookmark-template.php' ); benchmark("bookmark");
require( ABSPATH . WPINC . '/kses.php' ); benchmark("kses");
require( ABSPATH . WPINC . '/cron.php' ); benchmark("cron");
require( ABSPATH . WPINC . '/deprecated.php' ); benchmark("deprecated");
require( ABSPATH . WPINC . '/script-loader.php' ); benchmark("script");
require( ABSPATH . WPINC . '/taxonomy.php' ); benchmark("taxonomy");
require( ABSPATH . WPINC . '/update.php' ); benchmark("update");
require( ABSPATH . WPINC . '/canonical.php' ); benchmark("canonical");
require( ABSPATH . WPINC . '/shortcodes.php' ); benchmark("shortcodes");
require( ABSPATH . WPINC . '/class-wp-embed.php' ); benchmark("class");
require( ABSPATH . WPINC . '/media.php' ); benchmark("media");
require( ABSPATH . WPINC . '/http.php' ); benchmark("http");
require( ABSPATH . WPINC . '/class-http.php' ); benchmark("class");
require( ABSPATH . WPINC . '/widgets.php' ); benchmark("widgets");
require( ABSPATH . WPINC . '/nav-menu.php' ); benchmark("nav");
require( ABSPATH . WPINC . '/nav-menu-template.php' ); benchmark("nav");
require( ABSPATH . WPINC . '/admin-bar.php' ); benchmark("admin");
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment