├── LICENSE ├── README.md ├── main.js ├── package.json ├── screenshot └── screenshot.png └── wp-functions-hints.txt /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Mignon Style 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | brackets-wp-functions-hints 2 | =========================== 3 | 4 | Brackets WordPress Functions Hints - Provides code hints for function for the WordPress Themes and/or Plugins. 5 | 6 | 7 | Screenshot 8 | ---------- 9 | ![Brackets WordPress Functions Hints](screenshot/screenshot.png) 10 | 11 | 12 | How to Install 13 | -------------- 14 | 1. Open `File` > `Extension Manager`. 15 | 2. Select `Available` Tab. 16 | 3. Search for `Brackets WordPress Functions Hints`. 17 | 4. Install. 18 | 19 | OR 20 | 21 | Clone this repository in your extensions directory. 22 | 23 | 24 | Reference 25 | -------------- 26 | WordPress Code Reference / [Functions](https://developer.wordpress.org/reference/functions/) 27 | 28 | 29 | Changelog 30 | -------------- 31 | Ver 1.0.2 32 | * Add a new function of WordPress 4.3 33 | 34 | Ver 1.0.1 35 | * Add a new function of WordPress 4.2 36 | 37 | Ver 1.0.0 38 | * Initial release. 39 | * Add function of up to WordPress 4.1 40 | * Remove function of deprecated 41 | 42 | 43 | License 44 | -------------- 45 | Released under the [MIT License](LICENSE). 46 | 47 | 48 | Copyright 49 | -------------- 50 | Copyright (c) 2015 [Mignon Style](http://mignonstyle.com/). -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | /*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50, regexp: true */ 2 | /*global define, brackets, $, window */ 3 | 4 | define(function (require, exports, module) { 5 | "use strict"; 6 | 7 | var AppInit = brackets.getModule("utils/AppInit"), 8 | CodeHintManager = brackets.getModule("editor/CodeHintManager"), 9 | LanguageManager = brackets.getModule("language/LanguageManager"); 10 | 11 | var AppInit = brackets.getModule('utils/AppInit'), 12 | WPfuncHints = require('text!wp-functions-hints.txt'); 13 | 14 | var lastLine, 15 | lastFileName, 16 | cachedMatches, 17 | cachedWordList, 18 | tokenDefinition, 19 | currentTokenDefinition; 20 | // CSSProperties = require("text!CSSProperties.json"), 21 | // properties = JSON.parse(CSSProperties); 22 | 23 | /** 24 | * @constructor 25 | */ 26 | function WPfunctionshints() { 27 | this.lastLine = 0; 28 | this.lastFileName = ""; 29 | this.cachedMatches = []; 30 | this.cachedWordList = []; 31 | this.tokenDefinition = /[a-zA-Z][(_a-zA-Z0-9$,.';_ )].{2,}/g; 32 | this.currentTokenDefinition = /[a-zA-Z][a-zA-Z0-9_]+$/g; 33 | } 34 | 35 | 36 | /** 37 | * 38 | * @param {Editor} editor 39 | * A non-null editor object for the active window. 40 | * 41 | * @param {String} implicitChar 42 | * Either null, if the hinting request was explicit, or a single character 43 | * that represents the last insertion and that indicates an implicit 44 | * hinting request. 45 | * 46 | * @return {Boolean} 47 | * Determines whether the current provider is able to provide hints for 48 | * the given editor context and, in case implicitChar is non- null, 49 | * whether it is appropriate to do so. 50 | */ 51 | WPfunctionshints.prototype.hasHints = function (editor, implicitChar) { 52 | this.editor = editor; 53 | var cursor = this.editor.getCursorPos(); 54 | 55 | // if it is not the same line as the last input - rebuild word list 56 | if(cursor.line != this.lastLine){ 57 | var rawWordList = WPfuncHints.match(this.tokenDefinition); 58 | this.cachedWordList = []; 59 | for(var i in rawWordList){ 60 | var word = rawWordList[i]; if(this.cachedWordList.indexOf(word)==-1){ 61 | this.cachedWordList.push(word); 62 | } 63 | } 64 | } 65 | this.lastLine = cursor.line; 66 | 67 | // if has entered more than 2 characters - start completion 68 | var lineBeginning = {line:cursor.line,ch:0}; 69 | var textBeforeCursor = this.editor.document.getRange(lineBeginning, cursor); 70 | var symbolBeforeCursorArray = textBeforeCursor.match(this.currentTokenDefinition); 71 | if(symbolBeforeCursorArray){ 72 | // find if the half-word inputed is in the list 73 | for(var i in this.cachedWordList){ 74 | if(typeof this.cachedWordList[i] === 'string' && this.cachedWordList[i].indexOf(symbolBeforeCursorArray[0])==0){ 75 | return true; 76 | } 77 | } 78 | } 79 | 80 | 81 | return false; 82 | }; 83 | 84 | /** 85 | * Returns a list of availble CSS propertyname or -value hints if possible for the current editor context. 86 | * 87 | * @param {Editor} implicitChar 88 | * Either null, if the hinting request was explicit, or a single character 89 | * that represents the last insertion and that indicates an implicit 90 | * hinting request. 91 | * 92 | * @return {jQuery.Deferred|{ 93 | * hints: Array., 94 | * match: string, 95 | * selectInitial: boolean, 96 | * handleWideResults: boolean}} 97 | * Null if the provider wishes to end the hinting session. Otherwise, a 98 | * response object that provides: 99 | * 1. a sorted array hints that consists of strings 100 | * 2. a string match that is used by the manager to emphasize matching 101 | * substrings when rendering the hint list 102 | * 3. a boolean that indicates whether the first result, if one exists, 103 | * should be selected by default in the hint list window. 104 | * 4. handleWideResults, a boolean (or undefined) that indicates whether 105 | * to allow result string to stretch width of display. 106 | */ 107 | WPfunctionshints.prototype.getHints = function (implicitChar) { 108 | var cursor = this.editor.getCursorPos(); 109 | var lineBeginning = {line:cursor.line,ch:0}; 110 | var textBeforeCursor = this.editor.document.getRange(lineBeginning, cursor); 111 | var symbolBeforeCursorArray = textBeforeCursor.match(this.currentTokenDefinition); 112 | var hintList = []; 113 | for(var i in this.cachedWordList){ 114 | if(typeof this.cachedWordList[i] === 'string' && this.cachedWordList[i].indexOf(symbolBeforeCursorArray[0])==0){ 115 | hintList.push(this.cachedWordList[i]); 116 | } 117 | } 118 | 119 | return { 120 | hints: hintList, 121 | match: symbolBeforeCursorArray[0], 122 | selectInitial: true, 123 | handleWideResults: false 124 | }; 125 | }; 126 | 127 | /** 128 | * Complete the word 129 | * 130 | * @param {String} hint 131 | * The hint to be inserted into the editor context. 132 | * 133 | * @return {Boolean} 134 | * Indicates whether the manager should follow hint insertion with an 135 | * additional explicit hint request. 136 | */ 137 | WPfunctionshints.prototype.insertHint = function (hint) { 138 | var cursor = this.editor.getCursorPos(); 139 | var lineBeginning = {line:cursor.line,ch:0}; 140 | var textBeforeCursor = this.editor.document.getRange(lineBeginning, cursor); 141 | var indexOfTheSymbol = textBeforeCursor.search(this.currentTokenDefinition); 142 | var replaceStart = {line:cursor.line,ch:indexOfTheSymbol}; 143 | this.editor.document.replaceRange(hint, replaceStart, cursor); 144 | 145 | 146 | return false; 147 | }; 148 | 149 | AppInit.appReady(function () { 150 | var wpFunctionsHints = new WPfunctionshints(); 151 | CodeHintManager.registerHintProvider(wpFunctionsHints, ["php"], 10); 152 | }); 153 | }); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mignonstyle.brackets-wp-functions-hints", 3 | "title": "Brackets WordPress Functions Hints", 4 | "description": "Brackets WordPress Functions Hints - Provides code hints for function for the WordPress Themes and/or Plugins.", 5 | "homepage": "https://github.com/mignonstyle/brackets-wp-functions-hints", 6 | "version": "1.0.2", 7 | "author": "Mignon Style (https://github.com/mignonstyle)", 8 | "license": "MIT", 9 | "keywords": ["wordpress", "wp", "php", "hint", "hints", "hook", "function", "tag"], 10 | "engines": { 11 | "brackets": ">=0.41.0" 12 | }, 13 | "i18n": ["en", "ja"], 14 | "package-i18n": { 15 | "ja": { 16 | "description": "Brackets WordPress Functions Hints - WordPressのテーマやプラグインのための関数やテンプレートタグのコードヒントです。WordPress 4.3対応。" 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /screenshot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mignonstyle/brackets-wp-functions-hints/9265dad110d79480dfec96a42ea4b1bcf4d60d83/screenshot/screenshot.png -------------------------------------------------------------------------------- /wp-functions-hints.txt: -------------------------------------------------------------------------------- 1 | absint() 2 | activate_plugin() 3 | activate_plugins() 4 | add_action() 5 | add_blog_option() 6 | add_clean_index() 7 | add_comment_meta() 8 | add_comments_page() 9 | add_cssclass() 10 | add_dashboard_page() 11 | add_editor_style() 12 | add_existing_user_to_blog() 13 | add_filter() 14 | add_image_size() 15 | add_link() 16 | add_links_page() 17 | add_magic_quotes() 18 | add_management_page() 19 | add_media_page() 20 | add_menu_classes() 21 | add_menu_page() 22 | add_meta_box() 23 | add_meta() 24 | add_metadata() 25 | add_new_user_to_blog() 26 | add_object_page() 27 | add_option_whitelist() 28 | add_option() 29 | add_options_page() 30 | add_pages_page() 31 | add_permastruct() 32 | add_ping() 33 | add_plugins_page() 34 | add_post_meta() 35 | add_post_type_support() 36 | add_posts_page() 37 | add_query_arg() 38 | add_rewrite_endpoint() 39 | add_rewrite_rule() 40 | add_rewrite_tag() 41 | add_role() 42 | add_screen_option() 43 | add_settings_error() 44 | add_settings_field() 45 | add_settings_section() 46 | add_shortcode() 47 | add_site_option() 48 | add_submenu_page() 49 | add_theme_page() 50 | add_theme_support() 51 | add_thickbox() 52 | add_user_meta() 53 | add_user_to_blog() 54 | add_user() 55 | add_users_page() 56 | add_utility_page() 57 | addslashes_gpc() 58 | addslashes_gpc() 59 | adjacent_image_link() 60 | adjacent_post_link() 61 | adjacent_posts_rel_link_wp_head() 62 | adjacent_posts_rel_link() 63 | admin_color_scheme_picker() 64 | admin_created_user_email() 65 | admin_created_user_subject() 66 | admin_url() 67 | allow_subdirectory_install() 68 | allow_subdomain_install() 69 | allowed_http_request_hosts() 70 | allowed_tags() 71 | antispambot() 72 | apache_mod_loaded() 73 | apply_filters_ref_array() 74 | apply_filters() 75 | atom_enclosure() 76 | atom_site_icon() 77 | attachment_id3_data_meta_box() 78 | attachment_submit_meta_box() 79 | attachment_submitbox_metadata() 80 | attachment_url_to_postid() 81 | auth_redirect() 82 | author_can() 83 | avoid_blog_page_permalink_collision() 84 | background_color() 85 | background_image() 86 | backslashit() 87 | balanceTags() 88 | before_last_bar() 89 | bloginfo_rss() 90 | bloginfo( 'admin_email' ) 91 | bloginfo( 'atom_url' ) 92 | bloginfo( 'charset' ) 93 | bloginfo( 'comments_atom_url' ) 94 | bloginfo( 'comments_rss2_url' ) 95 | bloginfo( 'description' ) 96 | bloginfo( 'html_type' ) 97 | bloginfo( 'language' ) 98 | bloginfo( 'name' ) 99 | bloginfo( 'pingback_url' ) 100 | bloginfo( 'rdf_url' ) 101 | bloginfo( 'rss_url' ) 102 | bloginfo( 'rss2_url' ) 103 | bloginfo( 'version' ) 104 | bloginfo() 105 | body_class() 106 | bool_from_yn() 107 | build_query() 108 | bulk_edit_posts() 109 | cache_javascript_headers() 110 | cache_users() 111 | calendar_week_mod() 112 | can_edit_network() 113 | cancel_comment_reply_link() 114 | capital_P_dangit() 115 | cat_is_ancestor_of() 116 | category_description() 117 | category_exists() 118 | check_admin_referer() 119 | check_ajax_referer() 120 | check_and_publish_future_post() 121 | check_column() 122 | check_comment_flood_db() 123 | check_comment() 124 | check_import_new_users() 125 | check_password_reset_key() 126 | check_theme_switched() 127 | check_upload_mimes() 128 | check_upload_size() 129 | checked() 130 | choose_primary_blog() 131 | clean_attachment_cache() 132 | clean_blog_cache() 133 | clean_bookmark_cache() 134 | clean_category_cache() 135 | clean_comment_cache() 136 | clean_object_term_cache() 137 | clean_post_cache() 138 | clean_term_cache() 139 | clean_user_cache() 140 | codepress_footer_js() 141 | codepress_get_lang() 142 | comment_author_email_link() 143 | comment_author_email() 144 | comment_author_IP() 145 | comment_author_link() 146 | comment_author_rss() 147 | comment_author_url_link() 148 | comment_author_url() 149 | comment_author() 150 | comment_class() 151 | comment_date() 152 | comment_excerpt() 153 | comment_exists() 154 | comment_footer_die() 155 | comment_form_title() 156 | comment_form() 157 | comment_guid() 158 | comment_id_fields() 159 | comment_ID() 160 | comment_link() 161 | comment_reply_link() 162 | comment_text_rss() 163 | comment_text() 164 | comment_time() 165 | comment_type() 166 | comments_link_feed() 167 | comments_link() 168 | comments_number() 169 | comments_open() 170 | comments_popup_link() 171 | comments_popup_script() 172 | comments_template() 173 | compression_test() 174 | confirm_another_blog_signup() 175 | confirm_blog_signup() 176 | confirm_delete_users() 177 | confirm_user_signup() 178 | content_url() 179 | convert_chars() 180 | convert_invalid_entities() 181 | convert_smilies() 182 | convert_to_screen() 183 | copy_dir() 184 | core_update_footer() 185 | core_upgrade_preamble() 186 | count_many_users_posts() 187 | count_user_posts() 188 | count_users() 189 | create_empty_blog() 190 | create_initial_post_types() 191 | create_initial_taxonomies() 192 | current_action() 193 | current_filter() 194 | current_theme_info() 195 | current_theme_supports() 196 | current_time() 197 | current_user_can_for_blog() 198 | current_user_can() 199 | customize_themes_print_templates() 200 | dashboard_browser_nag_class() 201 | date_i18n() 202 | dbDelta() 203 | deactivate_plugins() 204 | dead_db() 205 | default_password_nag_edit_user() 206 | default_password_nag_handler() 207 | default_password_nag() 208 | default_topic_count_scale() 209 | delete_all_user_settings() 210 | delete_blog_option() 211 | delete_comment_meta() 212 | delete_get_calendar_cache() 213 | delete_meta() 214 | delete_metadata_by_mid() 215 | delete_metadata() 216 | delete_option() 217 | delete_plugins() 218 | delete_post_meta_by_key() 219 | delete_post_meta() 220 | delete_post_thumbnail() 221 | delete_site_option() 222 | delete_site_transient() 223 | delete_theme() 224 | delete_transient() 225 | delete_user_meta() 226 | delete_user_option() 227 | delete_user_setting() 228 | delete_users_add_js() 229 | deslash() 230 | did_action() 231 | disabled() 232 | discover_pingback_server_uri() 233 | dismiss_core_update() 234 | dismissed_updates() 235 | display_header_text() 236 | display_header() 237 | display_plugins_table() 238 | display_setup_form() 239 | display_space_usage() 240 | display_themes() 241 | do_accordion_sections() 242 | do_action_ref_array() 243 | do_action() 244 | do_activate_header() 245 | do_all_pings() 246 | do_core_upgrade() 247 | do_dismiss_core_update() 248 | do_enclose() 249 | do_feed_atom() 250 | do_feed_rdf() 251 | do_feed_rss() 252 | do_feed_rss2() 253 | do_feed() 254 | do_meta_boxes() 255 | do_robots() 256 | do_settings_fields() 257 | do_settings_sections() 258 | do_shortcode_tag() 259 | do_shortcode() 260 | do_signup_header() 261 | do_trackbacks() 262 | do_undismiss_core_update() 263 | documentation_link() 264 | doing_action() 265 | doing_filter() 266 | dolly_css() 267 | domain_exists() 268 | download_url() 269 | drop_index() 270 | dropdown_categories() 271 | dropdown_link_categories() 272 | dynamic_sidebar() 273 | edit_bookmark_link() 274 | edit_comment_link() 275 | edit_comment() 276 | edit_form_image_editor() 277 | edit_link() 278 | edit_post_link() 279 | edit_post() 280 | edit_tag_link() 281 | edit_term_link() 282 | edit_user() 283 | email_exists() 284 | endElement() 285 | enqueue_comment_hotkeys_js() 286 | ent2ncr() 287 | esc_attr__() 288 | esc_attr_e() 289 | esc_attr_x() 290 | esc_attr() 291 | esc_html__() 292 | esc_html_e() 293 | esc_html_x() 294 | esc_html() 295 | esc_js() 296 | esc_sql() 297 | esc_textarea() 298 | esc_url_raw() 299 | esc_url() 300 | export_add_js() 301 | export_date_options() 302 | export_wp() 303 | extract_from_markers() 304 | feed_content_type() 305 | feed_links_extra() 306 | feed_links() 307 | fetch_feed() 308 | fetch_rss() 309 | file_is_displayable_image() 310 | file_is_valid_image() 311 | filter_SSL() 312 | find_core_auto_update() 313 | find_core_update() 314 | find_posts_div() 315 | fix_import_form_size() 316 | fix_phpmailer_messageid() 317 | floated_admin_avatar() 318 | flush_rewrite_rules() 319 | force_ssl_content() 320 | force_ssl_content() 321 | force_ssl_login() 322 | form_option() 323 | format_code_lang() 324 | format_for_editor() 325 | format_to_edit() 326 | gallery_shortcode() 327 | generic_ping() 328 | get_404_template() 329 | get_active_blog_for_user() 330 | get_adjacent_post_link() 331 | get_adjacent_post_rel_link() 332 | get_adjacent_post() 333 | get_admin_page_parent() 334 | get_admin_page_title() 335 | get_admin_url() 336 | get_admin_users_for_domain() 337 | get_all_page_ids() 338 | get_all_post_type_supports() 339 | get_all_user_settings() 340 | get_alloptions_110() 341 | get_allowed_http_origins() 342 | get_allowed_mime_types() 343 | get_allowed_themes() 344 | get_ancestors() 345 | get_approved_comments() 346 | get_archive_template() 347 | get_archives_link() 348 | get_attached_file() 349 | get_attached_media() 350 | get_attachment_fields_to_edit() 351 | get_attachment_link() 352 | get_attachment_taxonomies() 353 | get_attachment_template() 354 | get_author_feed_link() 355 | get_author_posts_url() 356 | get_author_template() 357 | get_available_languages() 358 | get_available_post_mime_types() 359 | get_available_post_statuses() 360 | get_avatar_data() 361 | get_avatar_url() 362 | get_avatar() 363 | get_background_color() 364 | get_background_image() 365 | get_blog_count() 366 | get_blog_details() 367 | get_blog_id_from_url() 368 | get_blog_option() 369 | get_blog_permalink() 370 | get_blog_post() 371 | get_blog_status() 372 | get_blogaddress_by_id() 373 | get_blogaddress_by_name() 374 | get_bloginfo_rss() 375 | get_bloginfo( 'admin_email' ) 376 | get_bloginfo( 'atom_url' ) 377 | get_bloginfo( 'charset' ) 378 | get_bloginfo( 'comments_atom_url' ) 379 | get_bloginfo( 'comments_rss2_url' ) 380 | get_bloginfo( 'description' ) 381 | get_bloginfo( 'html_type' ) 382 | get_bloginfo( 'language' ) 383 | get_bloginfo( 'name' ) 384 | get_bloginfo( 'pingback_url' ) 385 | get_bloginfo( 'rdf_url' ) 386 | get_bloginfo( 'rss_url' ) 387 | get_bloginfo( 'rss2_url' ) 388 | get_bloginfo( 'version' ) 389 | get_bloginfo() 390 | get_blogs_of_user() 391 | get_body_class() 392 | get_bookmark_field() 393 | get_bookmark() 394 | get_bookmarks() 395 | get_boundary_post() 396 | get_broken_themes() 397 | get_calendar() 398 | get_cancel_comment_reply_link() 399 | get_cat_ID() 400 | get_cat_name() 401 | get_categories() 402 | get_category_by_path() 403 | get_category_by_slug() 404 | get_category_feed_link() 405 | get_category_link() 406 | get_category_parents() 407 | get_category_template() 408 | get_category_to_edit() 409 | get_category() 410 | get_children() 411 | get_clean_basedomain() 412 | get_cli_args() 413 | get_column_headers() 414 | get_comment_author_email_link() 415 | get_comment_author_email() 416 | get_comment_author_IP() 417 | get_comment_author_link() 418 | get_comment_author_rss() 419 | get_comment_author_url_link() 420 | get_comment_author_url() 421 | get_comment_author() 422 | get_comment_class() 423 | get_comment_count() 424 | get_comment_date() 425 | get_comment_excerpt() 426 | get_comment_guid() 427 | get_comment_id_fields() 428 | get_comment_ID() 429 | get_comment_link() 430 | get_comment_meta() 431 | get_comment_pages_count() 432 | get_comment_reply_link() 433 | get_comment_statuses() 434 | get_comment_text() 435 | get_comment_time() 436 | get_comment_to_edit() 437 | get_comment_type() 438 | get_comment() 439 | get_comments_link() 440 | get_comments_number_text() 441 | get_comments_number() 442 | get_comments_pagenum_link() 443 | get_comments_popup_template() 444 | get_comments() 445 | get_compat_media_markup() 446 | get_core_checksums() 447 | get_core_updates() 448 | get_current_blog_id() 449 | get_current_screen() 450 | get_current_site() 451 | get_current_user_id() 452 | get_current_user_id() 453 | get_currentuserinfo() 454 | get_custom_header() 455 | get_dashboard_url() 456 | get_date_from_gmt() 457 | get_date_template() 458 | get_day_link() 459 | get_default_comment_status() 460 | get_default_feed() 461 | get_default_link_to_edit() 462 | get_default_page_to_edit() 463 | get_default_post_to_edit() 464 | get_delete_post_link() 465 | get_dirsize() 466 | get_dropins() 467 | get_edit_bookmark_link() 468 | get_edit_comment_link() 469 | get_edit_post_link() 470 | get_edit_profile_url() 471 | get_edit_tag_link() 472 | get_edit_term_link() 473 | get_edit_user_link() 474 | get_editable_roles() 475 | get_editor_stylesheets() 476 | get_enclosed() 477 | get_extended() 478 | get_feed_link() 479 | get_file_data() 480 | get_file_description() 481 | get_file() 482 | get_filesystem_method() 483 | get_footer() 484 | get_front_page_template() 485 | get_gmt_from_date() 486 | get_header_image() 487 | get_header_textcolor() 488 | get_header() 489 | get_hidden_columns() 490 | get_hidden_meta_boxes() 491 | get_home_path() 492 | get_home_template() 493 | get_home_url() 494 | get_http_origin() 495 | get_id_from_blogname() 496 | get_image_send_to_editor() 497 | get_image_tag() 498 | get_images_from_uri() 499 | get_importers() 500 | get_index_template() 501 | get_inline_data() 502 | get_intermediate_image_sizes() 503 | get_language_attributes() 504 | get_last_updated() 505 | get_lastcommentmodified() 506 | get_lastpostdate() 507 | get_lastpostmodified() 508 | get_link_to_edit() 509 | get_locale_stylesheet_uri() 510 | get_locale() 511 | get_main_network_id() 512 | get_media_embedded_in_content() 513 | get_media_item() 514 | get_media_items() 515 | get_meta_keys() 516 | get_meta_sql() 517 | get_metadata_by_mid() 518 | get_metadata() 519 | get_month_link() 520 | get_most_recent_post_of_user() 521 | get_mu_plugins() 522 | get_nav_menu_locations() 523 | get_network_by_path() 524 | get_next_comments_link() 525 | get_next_post_link() 526 | get_next_post() 527 | get_next_posts_link() 528 | get_next_posts_page_link() 529 | get_num_queries() 530 | get_object_taxonomies() 531 | get_object_term_cache() 532 | get_objects_in_term() 533 | get_option( 'active_plugins' ) 534 | get_option( 'admin_email' ) 535 | get_option( 'advanced_edit' ) 536 | get_option( 'avatar_default' ) 537 | get_option( 'avatar_rating' ) 538 | get_option( 'blacklist_keys' ) 539 | get_option( 'blog_charset' ) 540 | get_option( 'blog_public' ) 541 | get_option( 'blogdescription' ) 542 | get_option( 'blogname' ) 543 | get_option( 'category_base' ) 544 | get_option( 'close_comments_days_old' ) 545 | get_option( 'close_comments_for_old_posts' ) 546 | get_option( 'comment_max_links' ) 547 | get_option( 'comment_moderation' ) 548 | get_option( 'comment_order' ) 549 | get_option( 'comment_registration' ) 550 | get_option( 'comment_whitelist' ) 551 | get_option( 'comments_notify' ) 552 | get_option( 'comments_per_page' ) 553 | get_option( 'date_format' ) 554 | get_option( 'db_version' ) 555 | get_option( 'default_category' ) 556 | get_option( 'default_comment_status' ) 557 | get_option( 'default_comments_page' ) 558 | get_option( 'default_email_category' ) 559 | get_option( 'default_link_category' ) 560 | get_option( 'default_ping_status' ) 561 | get_option( 'default_pingback_flag' ) 562 | get_option( 'default_post_format' ) 563 | get_option( 'default_role' ) 564 | get_option( 'gmt_offset' ) 565 | get_option( 'gzipcompression' ) 566 | get_option( 'hack_file' ) 567 | get_option( 'home' ) 568 | get_option( 'html_type' ) 569 | get_option( 'image_default_align' ) 570 | get_option( 'image_default_link_type' ) 571 | get_option( 'image_default_size' ) 572 | get_option( 'large_size_h' ) 573 | get_option( 'large_size_w' ) 574 | get_option( 'link_manager_enabled' ) 575 | get_option( 'links_updated_date_format' ) 576 | get_option( 'mailserver_login' ) 577 | get_option( 'mailserver_pass' ) 578 | get_option( 'mailserver_port' ) 579 | get_option( 'mailserver_url' ) 580 | get_option( 'medium_size_h' ) 581 | get_option( 'medium_size_w' ) 582 | get_option( 'moderation_keys' ) 583 | get_option( 'moderation_notify' ) 584 | get_option( 'page_comments' ) 585 | get_option( 'page_for_posts' ) 586 | get_option( 'page_on_front' ) 587 | get_option( 'permalink_structure' ) 588 | get_option( 'ping_sites' ) 589 | get_option( 'posts_per_page' ) 590 | get_option( 'posts_per_rss' ) 591 | get_option( 'recently_edited' ) 592 | get_option( 'require_name_email' ) 593 | get_option( 'rss_use_excerpt' ) 594 | get_option( 'show_avatars' ) 595 | get_option( 'show_on_front' ) 596 | get_option( 'siteurl' ) 597 | get_option( 'start_of_week' ) 598 | get_option( 'sticky_posts' ) 599 | get_option( 'stylesheet' ) 600 | get_option( 'tag_base' ) 601 | get_option( 'template' ) 602 | get_option( 'thread_comments_depth' ) 603 | get_option( 'thread_comments' ) 604 | get_option( 'thumbnail_crop' ) 605 | get_option( 'thumbnail_size_h' ) 606 | get_option( 'thumbnail_size_w' ) 607 | get_option( 'time_format' ) 608 | get_option( 'timezone_string' ) 609 | get_option( 'uninstall_plugins' ) 610 | get_option( 'upload_path' ) 611 | get_option( 'upload_url_path' ) 612 | get_option( 'uploads_use_yearmonth_folders' ) 613 | get_option( 'use_balanceTags' ) 614 | get_option( 'use_smilies' ) 615 | get_option( 'use_trackback' ) 616 | get_option( 'users_can_register' ) 617 | get_option( 'widget_categories' ) 618 | get_option( 'widget_rss' ) 619 | get_option( 'widget_text' ) 620 | get_option() 621 | get_others_drafts() 622 | get_others_pending() 623 | get_others_unpublished_posts() 624 | get_page_by_path() 625 | get_page_by_title() 626 | get_page_children() 627 | get_page_hierarchy() 628 | get_page_link() 629 | get_page_of_comment() 630 | get_page_statuses() 631 | get_page_template_slug() 632 | get_page_template() 633 | get_page_templates() 634 | get_page_uri() 635 | get_paged_template() 636 | get_pagenum_link() 637 | get_pages() 638 | get_pending_comments_num() 639 | get_permalink() 640 | get_plugin_data() 641 | get_plugin_files() 642 | get_plugin_page_hook() 643 | get_plugin_page_hookname() 644 | get_plugin_updates() 645 | get_plugins() 646 | get_post_ancestors() 647 | get_post_class() 648 | get_post_comments_feed_link() 649 | get_post_custom_keys() 650 | get_post_custom_values() 651 | get_post_custom() 652 | get_post_field() 653 | get_post_format_link() 654 | get_post_format_slugs() 655 | get_post_format_string() 656 | get_post_format_strings() 657 | get_post_format() 658 | get_post_galleries_images() 659 | get_post_galleries() 660 | get_post_gallery_images() 661 | get_post_gallery() 662 | get_post_meta_by_id() 663 | get_post_meta() 664 | get_post_mime_type() 665 | get_post_mime_types() 666 | get_post_modified_time() 667 | get_post_permalink() 668 | get_post_reply_link() 669 | get_post_stati() 670 | get_post_status_object() 671 | get_post_status() 672 | get_post_taxonomies() 673 | get_post_thumbnail_id() 674 | get_post_time() 675 | get_post_to_edit() 676 | get_post_type_archive_feed_link() 677 | get_post_type_archive_link() 678 | get_post_type_archive_template() 679 | get_post_type_capabilities() 680 | get_post_type_labels() 681 | get_post_type_object() 682 | get_post_type() 683 | get_post_types() 684 | get_post() 685 | get_posts_by_author_sql() 686 | get_posts_nav_link() 687 | get_posts() 688 | get_preferred_from_update_core() 689 | get_previous_comments_link() 690 | get_previous_post_link() 691 | get_previous_post() 692 | get_previous_posts_link() 693 | get_private_posts_cap_sql() 694 | get_pung() 695 | get_queried_object_id() 696 | get_queried_object() 697 | get_query_template() 698 | get_query_var() 699 | get_random_header_image() 700 | get_raw_theme_root() 701 | get_real_file_to_edit() 702 | get_registered_nav_menus() 703 | get_role() 704 | get_rss() 705 | get_sample_permalink_html() 706 | get_sample_permalink() 707 | get_search_comments_feed_link() 708 | get_search_feed_link() 709 | get_search_form() 710 | get_search_link() 711 | get_search_query() 712 | get_settings_errors() 713 | get_shortcode_regex() 714 | get_shortcut_link() 715 | get_sidebar() 716 | get_single_template() 717 | get_singular_template() 718 | get_site_by_path() 719 | get_site_option() 720 | get_site_transient() 721 | get_site_url() 722 | get_sitestats() 723 | get_space_allowed() 724 | get_space_used() 725 | get_status_header_desc() 726 | get_stylesheet_directory_uri() 727 | get_stylesheet_directory() 728 | get_stylesheet_uri() 729 | get_stylesheet() 730 | get_submit_button() 731 | get_super_admins() 732 | get_tag_feed_link() 733 | get_tag_link() 734 | get_tag_regex() 735 | get_tag_template() 736 | get_tag() 737 | get_tags_to_edit() 738 | get_tags() 739 | get_tax_sql() 740 | get_taxonomies_for_attachments() 741 | get_taxonomies() 742 | get_taxonomy_labels() 743 | get_taxonomy_template() 744 | get_taxonomy() 745 | get_temp_dir() 746 | get_template_directory_uri() 747 | get_template_directory() 748 | get_template_part() 749 | get_template() 750 | get_term_by() 751 | get_term_children() 752 | get_term_feed_link() 753 | get_term_field() 754 | get_term_link() 755 | get_term_to_edit() 756 | get_term() 757 | get_terms_to_edit() 758 | get_terms() 759 | get_the_archive_description() 760 | get_the_archive_title() 761 | get_the_author_link() 762 | get_the_author_meta() 763 | get_the_author_posts() 764 | get_the_author() 765 | get_the_category_by_ID() 766 | get_the_category_list() 767 | get_the_category_rss() 768 | get_the_category() 769 | get_the_content_feed() 770 | get_the_content() 771 | get_the_date() 772 | get_the_excerpt() 773 | get_the_generator() 774 | get_the_guid() 775 | get_the_ID() 776 | get_the_modified_author() 777 | get_the_modified_date() 778 | get_the_modified_time() 779 | get_the_password_form() 780 | get_the_permalink() 781 | get_the_post_navigation() 782 | get_the_post_thumbnail() 783 | get_the_posts_navigation() 784 | get_the_posts_pagination() 785 | get_the_tag_list() 786 | get_the_tags() 787 | get_the_taxonomies() 788 | get_the_term_list() 789 | get_the_terms() 790 | get_the_time() 791 | get_the_title_rss() 792 | get_the_title() 793 | get_theme_feature_list() 794 | get_theme_mod() 795 | get_theme_mods() 796 | get_theme_root_uri() 797 | get_theme_root() 798 | get_theme_roots() 799 | get_theme_support() 800 | get_theme_update_available() 801 | get_theme_updates() 802 | get_to_ping() 803 | get_trackback_url() 804 | get_transient() 805 | get_translations_for_domain() 806 | get_udims() 807 | get_upload_iframe_src() 808 | get_upload_space_available() 809 | get_uploaded_header_images() 810 | get_url_in_content() 811 | get_user_by() 812 | get_user_count() 813 | get_user_meta() 814 | get_user_option() 815 | get_user_setting() 816 | get_user_to_edit() 817 | get_userdata() 818 | get_users_drafts() 819 | get_users() 820 | get_weekstartend() 821 | get_wp_title_rss() 822 | get_year_link() 823 | global_terms_enabled() 824 | global_terms() 825 | got_mod_rewrite() 826 | got_url_rewrite() 827 | grant_super_admin() 828 | has_action() 829 | has_category() 830 | has_excerpt() 831 | has_filter() 832 | has_header_image() 833 | has_image_size() 834 | has_meta() 835 | has_nav_menu() 836 | has_post_format() 837 | has_post_thumbnail() 838 | has_shortcode() 839 | has_tag() 840 | has_term() 841 | hash_equals() 842 | hash_hmac() 843 | have_comments() 844 | have_posts() 845 | header_image() 846 | header_textcolor() 847 | heartbeat_autosave() 848 | home_url() 849 | html_type_rss() 850 | htmlentities2() 851 | human_time_diff() 852 | iframe_footer() 853 | iframe_header() 854 | iis7_add_rewrite_rule() 855 | iis7_delete_rewrite_rule() 856 | iis7_rewrite_rule_exists() 857 | iis7_save_url_rewrite_rules() 858 | iis7_supports_permalinks() 859 | image_add_caption() 860 | image_align_input_fields() 861 | image_attachment_fields_to_edit() 862 | image_attachment_fields_to_save() 863 | image_constrain_size_for_editor() 864 | image_downsize() 865 | image_edit_apply_changes() 866 | image_get_intermediate_size() 867 | image_hwstring() 868 | image_link_input_fields() 869 | image_make_intermediate_size() 870 | image_media_send_to_editor() 871 | image_resize_dimensions() 872 | image_size_input_fields() 873 | img_caption_shortcode() 874 | in_category() 875 | in_the_loop() 876 | includes_url() 877 | init() 878 | insert_blog() 879 | insert_with_markers() 880 | install_blog_defaults() 881 | install_blog() 882 | install_dashboard() 883 | install_global_terms() 884 | install_network() 885 | install_plugin_information() 886 | install_plugin_install_status() 887 | install_plugins_favorites_form() 888 | install_plugins_upload() 889 | install_popular_tags() 890 | install_search_form() 891 | install_theme_information() 892 | install_theme_search_form() 893 | install_themes_dashboard() 894 | install_themes_feature_list() 895 | install_themes_upload() 896 | is_404() 897 | is_active_sidebar() 898 | is_active_widget() 899 | is_admin_bar_showing() 900 | is_admin() 901 | is_allowed_http_origin() 902 | is_archive() 903 | is_archived() 904 | is_attachment() 905 | is_author() 906 | is_blog_admin() 907 | is_blog_installed() 908 | is_category() 909 | is_child_theme() 910 | is_client_error() 911 | is_comment_feed() 912 | is_comments_popup() 913 | is_customize_preview() 914 | is_date() 915 | is_day() 916 | is_dynamic_sidebar() 917 | is_email_address_unsafe() 918 | is_email() 919 | is_error() 920 | is_feed() 921 | is_front_page() 922 | is_home() 923 | is_info() 924 | is_lighttpd_before_150() 925 | is_local_attachment() 926 | is_main_network() 927 | is_main_query() 928 | is_main_site() 929 | is_month() 930 | is_multi_author() 931 | is_multisite() 932 | is_nav_menu_item() 933 | is_nav_menu() 934 | is_network_admin() 935 | is_network_only_plugin() 936 | is_new_day() 937 | is_object_in_taxonomy() 938 | is_object_in_term() 939 | is_page_template() 940 | is_page() 941 | is_paged() 942 | is_plugin_active_for_network() 943 | is_plugin_active() 944 | is_plugin_inactive() 945 | is_post_type_archive() 946 | is_post_type_hierarchical() 947 | is_preview() 948 | is_protected_meta() 949 | is_random_header_image() 950 | is_redirect() 951 | is_robots() 952 | is_rtl() 953 | is_search() 954 | is_serialized_string() 955 | is_serialized() 956 | is_server_error() 957 | is_single() 958 | is_singular() 959 | is_ssl() 960 | is_sticky() 961 | is_subdomain_install() 962 | is_success() 963 | is_super_admin() 964 | is_tag() 965 | is_tax() 966 | is_taxonomy_hierarchical() 967 | is_textdomain_loaded() 968 | is_time() 969 | is_trackback() 970 | is_uninstallable_plugin() 971 | is_upload_space_available() 972 | is_user_admin() 973 | is_user_logged_in() 974 | is_user_member_of_blog() 975 | is_user_option_local() 976 | is_user_spammy() 977 | is_wp_error() 978 | is_year() 979 | iso8601_timezone_to_offset() 980 | iso8601_to_datetime() 981 | json_decode() 982 | json_encode() 983 | kses_init_filters() 984 | kses_init() 985 | kses_remove_filters() 986 | language_attributes() 987 | link_advanced_meta_box() 988 | link_categories_meta_box() 989 | link_submit_meta_box() 990 | link_target_meta_box() 991 | link_xfn_meta_box() 992 | links_add_base_url() 993 | links_add_target() 994 | list_core_update() 995 | list_files() 996 | list_meta() 997 | list_plugin_updates() 998 | list_theme_updates() 999 | list_translation_updates() 1000 | load_child_theme_textdomain() 1001 | load_default_textdomain() 1002 | load_image_to_edit() 1003 | load_muplugin_textdomain() 1004 | load_plugin_textdomain() 1005 | load_template() 1006 | load_textdomain() 1007 | load_theme_textdomain() 1008 | locale_stylesheet() 1009 | locate_template() 1010 | login_footer() 1011 | login_header() 1012 | lowercase_octets() 1013 | maintenance_nag() 1014 | make_clickable() 1015 | make_db_current_silent() 1016 | make_db_current() 1017 | make_site_theme_from_default() 1018 | make_site_theme_from_oldschool() 1019 | make_site_theme() 1020 | map_meta_cap() 1021 | maybe_add_column() 1022 | maybe_add_existing_user_to_blog() 1023 | maybe_convert_table_to_utf8mb4() 1024 | maybe_create_table() 1025 | maybe_disable_automattic_widgets() 1026 | maybe_disable_link_manager() 1027 | maybe_drop_column() 1028 | maybe_hash_hex_color() 1029 | maybe_redirect_404() 1030 | maybe_serialize() 1031 | maybe_unserialize() 1032 | mb_substr() 1033 | mbstring_binary_safe_encoding() 1034 | media_buttons() 1035 | media_handle_sideload() 1036 | media_handle_upload() 1037 | media_post_single_attachment_fields_to_edit() 1038 | media_send_to_editor() 1039 | media_sideload_image() 1040 | media_single_attachment_fields_to_edit() 1041 | media_upload_flash_bypass() 1042 | media_upload_form_handler() 1043 | media_upload_form() 1044 | media_upload_gallery_form() 1045 | media_upload_gallery() 1046 | media_upload_header() 1047 | media_upload_html_bypass() 1048 | media_upload_library_form() 1049 | media_upload_library() 1050 | media_upload_max_image_resize() 1051 | media_upload_tabs() 1052 | media_upload_text_after() 1053 | media_upload_type_form() 1054 | media_upload_type_url_form() 1055 | menu_page_url() 1056 | meta_box_prefs() 1057 | meta_form() 1058 | metadata_exists() 1059 | ms_allowed_http_request_hosts() 1060 | ms_cookie_constants() 1061 | ms_file_constants() 1062 | ms_is_switched() 1063 | ms_not_installed() 1064 | ms_site_check() 1065 | ms_subdomain_constants() 1066 | ms_upload_constants() 1067 | mu_dropdown_languages() 1068 | multisite_over_quota_message() 1069 | mysql2date() 1070 | network_admin_url() 1071 | network_domain_check() 1072 | network_home_url() 1073 | network_settings_add_js() 1074 | network_site_url() 1075 | network_step1() 1076 | network_step2() 1077 | new_user_email_admin_notice() 1078 | newblog_notify_siteadmin() 1079 | newuser_notify_siteadmin() 1080 | next_comments_link() 1081 | next_image_link() 1082 | next_post_link() 1083 | next_post_rel_link() 1084 | next_posts_link() 1085 | next_posts() 1086 | next_widget_id_number() 1087 | nocache_headers() 1088 | noindex() 1089 | normalize_whitespace() 1090 | number_format_i18n() 1091 | option_update_filter() 1092 | options_discussion_add_js() 1093 | options_general_add_js() 1094 | options_permalink_add_js() 1095 | options_reading_add_js() 1096 | options_reading_blog_charset() 1097 | page_attributes_meta_box() 1098 | page_template_dropdown() 1099 | paginate_comments_links() 1100 | paginate_links() 1101 | parent_dropdown() 1102 | parse_w3cdtf() 1103 | path_is_absolute() 1104 | path_join() 1105 | permalink_anchor() 1106 | pingback_ping_source_uri() 1107 | pingback() 1108 | pings_open() 1109 | plugin_basename() 1110 | plugin_dir_path() 1111 | plugin_dir_url() 1112 | plugin_sandbox_scrape() 1113 | plugins_api() 1114 | plugins_url() 1115 | populate_network() 1116 | populate_options() 1117 | populate_roles() 1118 | popuplinks() 1119 | post_author_meta_box() 1120 | post_categories_meta_box() 1121 | post_class() 1122 | post_comment_meta_box_thead() 1123 | post_comment_status_meta_box() 1124 | post_comments_feed_link() 1125 | post_custom_meta_box() 1126 | post_custom() 1127 | post_excerpt_meta_box() 1128 | post_exists() 1129 | post_form_autocomplete_off() 1130 | post_format_meta_box() 1131 | post_password_required() 1132 | post_permalink() 1133 | post_preview() 1134 | post_reply_link() 1135 | post_revisions_meta_box() 1136 | post_slug_meta_box() 1137 | post_submit_meta_box() 1138 | post_submit_meta_box() 1139 | post_tags_meta_box() 1140 | post_thumbnail_meta_box() 1141 | post_trackback_meta_box() 1142 | post_type_archive_title() 1143 | post_type_exists() 1144 | post_type_supports() 1145 | postbox_classes() 1146 | posts_nav_link() 1147 | pre_schema_upgrade() 1148 | prep_atom_text_construct() 1149 | prepend_attachment() 1150 | press_it() 1151 | press_this_media_buttons() 1152 | prev_post_rel_link() 1153 | preview_theme_ob_filter_callback() 1154 | preview_theme_ob_filter() 1155 | preview_theme() 1156 | previous_comments_link() 1157 | previous_image_link() 1158 | previous_post_link() 1159 | previous_posts_link() 1160 | previous_posts() 1161 | print_admin_styles() 1162 | print_column_headers() 1163 | print_emoji_styles() 1164 | print_footer_scripts() 1165 | print_head_scripts() 1166 | print_head_scripts() 1167 | privacy_ping_filter() 1168 | query_posts() 1169 | rawurlencode_deep() 1170 | recurse_dirsize() 1171 | redirect_canonical() 1172 | redirect_guess_404_permalink() 1173 | redirect_post() 1174 | redirect_this_site() 1175 | refresh_blog_details() 1176 | refresh_user_details() 1177 | register_activation_hook() 1178 | register_admin_color_schemes() 1179 | register_column_headers() 1180 | register_deactivation_hook() 1181 | register_default_headers() 1182 | register_importer() 1183 | register_meta() 1184 | register_nav_menu() 1185 | register_nav_menus() 1186 | register_new_user() 1187 | register_post_status() 1188 | register_post_type() 1189 | register_setting() 1190 | register_sidebar() 1191 | register_sidebars() 1192 | register_taxonomy_for_object_type() 1193 | register_taxonomy() 1194 | register_theme_directory() 1195 | register_uninstall_hook() 1196 | register_widget() 1197 | rel_canonical() 1198 | remove_accents() 1199 | remove_action() 1200 | remove_all_actions() 1201 | remove_all_filters() 1202 | remove_all_shortcodes() 1203 | remove_editor_styles() 1204 | remove_filter() 1205 | remove_image_size() 1206 | remove_menu_page() 1207 | remove_meta_box() 1208 | remove_option_whitelist() 1209 | remove_post_type_support() 1210 | remove_query_arg() 1211 | remove_role() 1212 | remove_shortcode() 1213 | remove_submenu_page() 1214 | remove_theme_mod() 1215 | remove_theme_mods() 1216 | remove_theme_support() 1217 | remove_user_from_blog() 1218 | request_filesystem_credentials() 1219 | require_if_theme_supports() 1220 | require_wp_db() 1221 | reset_mbstring_encoding() 1222 | reset_password() 1223 | restore_current_blog() 1224 | retrieve_password() 1225 | retrieve_widgets() 1226 | revoke_super_admin() 1227 | rewind_posts() 1228 | rsd_link() 1229 | rss_enclosure() 1230 | rss2_site_icon() 1231 | safecss_filter_attr() 1232 | sanitize_bookmark_field() 1233 | sanitize_bookmark() 1234 | sanitize_category_field() 1235 | sanitize_category() 1236 | sanitize_comment_cookies() 1237 | sanitize_email() 1238 | sanitize_file_name() 1239 | sanitize_hex_color_no_hash() 1240 | sanitize_hex_color() 1241 | sanitize_html_class() 1242 | sanitize_key() 1243 | sanitize_meta() 1244 | sanitize_mime_type() 1245 | sanitize_option() 1246 | sanitize_post_field() 1247 | sanitize_post() 1248 | sanitize_sql_orderby() 1249 | sanitize_term_field() 1250 | sanitize_term() 1251 | sanitize_text_field() 1252 | sanitize_title_for_query() 1253 | sanitize_title_with_dashes() 1254 | sanitize_title() 1255 | sanitize_trackback_urls() 1256 | sanitize_user_field() 1257 | sanitize_user() 1258 | save_mod_rewrite_rules() 1259 | saveDomDocument() 1260 | screen_icon() 1261 | script_concat_settings() 1262 | search_theme_directories() 1263 | seems_utf8() 1264 | selected() 1265 | self_admin_url() 1266 | self_link() 1267 | send_confirmation_on_profile_email() 1268 | send_frame_options_header() 1269 | send_nosniff_header() 1270 | send_origin_headers() 1271 | separate_comments() 1272 | set_current_screen() 1273 | set_post_format() 1274 | set_post_thumbnail_size() 1275 | set_post_thumbnail() 1276 | set_post_type() 1277 | set_query_var() 1278 | set_screen_options() 1279 | set_site_transient() 1280 | set_theme_mod() 1281 | set_transient() 1282 | set_url_scheme() 1283 | set_user_setting() 1284 | settings_errors() 1285 | settings_fields() 1286 | setup_postdata() 1287 | setup_userdata() 1288 | shortcode_atts() 1289 | shortcode_exists() 1290 | shortcode_parse_atts() 1291 | shortcode_unautop() 1292 | show_admin_bar() 1293 | show_blog_form() 1294 | show_message() 1295 | show_user_form() 1296 | shutdown_action_hook() 1297 | signup_another_blog() 1298 | signup_blog() 1299 | signup_nonce_check() 1300 | signup_nonce_fields() 1301 | signup_user() 1302 | single_cat_title() 1303 | single_month_title() 1304 | single_post_title() 1305 | single_tag_title() 1306 | single_term_title() 1307 | site_admin_notice() 1308 | site_url() 1309 | size_format() 1310 | smilies_init() 1311 | sort_menu() 1312 | spawn_cron() 1313 | split_all_shared_terms() 1314 | startElement() 1315 | status_header() 1316 | stick_post() 1317 | stream_preview_image() 1318 | strip_shortcode_tag() 1319 | strip_shortcodes() 1320 | stripslashes_deep() 1321 | submit_button() 1322 | switch_theme() 1323 | switch_to_blog() 1324 | sync_category_tag_slugs() 1325 | tag_description() 1326 | tag_escape() 1327 | tag_exists() 1328 | taxonomy_exists() 1329 | term_description() 1330 | term_exists() 1331 | term_is_ancestor_of() 1332 | the_archive_description() 1333 | the_archive_title() 1334 | the_attachment_link() 1335 | the_attachment_links() 1336 | the_author_link() 1337 | the_author_meta() 1338 | the_author_posts_link() 1339 | the_author_posts() 1340 | the_author() 1341 | the_category_rss() 1342 | the_category() 1343 | the_comment() 1344 | the_content_feed() 1345 | the_content() 1346 | the_date_xml() 1347 | the_date() 1348 | the_excerpt_rss() 1349 | the_excerpt() 1350 | the_feed_link() 1351 | the_generator() 1352 | the_guid() 1353 | the_ID() 1354 | the_media_upload_tabs() 1355 | the_modified_author() 1356 | the_modified_date() 1357 | the_modified_time() 1358 | the_permalink_rss() 1359 | the_permalink() 1360 | the_post_navigation() 1361 | the_post_password() 1362 | the_post_thumbnail() 1363 | the_post() 1364 | the_posts_navigation() 1365 | the_posts_pagination() 1366 | the_search_query() 1367 | the_shortlink() 1368 | the_tags() 1369 | the_taxonomies() 1370 | the_terms() 1371 | the_time() 1372 | the_title_attribute() 1373 | the_title_rss() 1374 | the_title() 1375 | the_weekday_date() 1376 | the_weekday() 1377 | the_widget() 1378 | theme_update_available() 1379 | themes_api() 1380 | timer_start() 1381 | timer_stop() 1382 | touch_time() 1383 | trackback_response() 1384 | trackback_url_list() 1385 | trackback_url() 1386 | trackback() 1387 | trailingslashit() 1388 | translate_level_to_role() 1389 | translate_nooped_plural() 1390 | translate_smiley() 1391 | translate_user_role() 1392 | translate_with_gettext_context() 1393 | translate() 1394 | translations_api() 1395 | undismiss_core_update() 1396 | uninstall_plugin() 1397 | unload_textdomain() 1398 | unregister_default_headers() 1399 | unregister_nav_menu() 1400 | unregister_setting() 1401 | unregister_sidebar() 1402 | unregister_taxonomy_for_object_type() 1403 | unregister_widget() 1404 | unstick_post() 1405 | untrailingslashit() 1406 | unzip_file() 1407 | update_archived() 1408 | update_attached_file() 1409 | update_blog_details() 1410 | update_blog_option() 1411 | update_blog_public() 1412 | update_blog_status() 1413 | update_comment_cache() 1414 | update_comment_meta() 1415 | update_core() 1416 | update_gallery_tab() 1417 | update_home_siteurl() 1418 | update_meta_cache() 1419 | update_meta() 1420 | update_metadata_by_mid() 1421 | update_metadata() 1422 | update_nag() 1423 | update_object_term_cache() 1424 | update_option_new_admin_email() 1425 | update_option() 1426 | update_option() 1427 | update_option() 1428 | update_post_cache() 1429 | update_post_caches() 1430 | update_post_meta() 1431 | update_post_thumbnail_cache() 1432 | update_posts_count() 1433 | update_recently_edited() 1434 | update_right_now_message() 1435 | update_site_option() 1436 | update_term_cache() 1437 | update_user_caches() 1438 | update_user_meta() 1439 | update_user_option() 1440 | update_user_status() 1441 | upgrade_all() 1442 | upgrade_network() 1443 | upgrade_old_slugs() 1444 | upload_is_file_too_big() 1445 | upload_is_user_over_quota() 1446 | upload_size_limit_filter() 1447 | upload_space_setting() 1448 | url_shorten() 1449 | url_to_postid() 1450 | urlencode_deep() 1451 | use_codepress() 1452 | use_ssl_preference() 1453 | user_admin_url() 1454 | user_can_access_admin_page() 1455 | user_can_richedit() 1456 | user_can() 1457 | user_trailingslashit() 1458 | username_exists() 1459 | users_can_register_signup_filter() 1460 | utf8_uri_encode() 1461 | valid_unicode() 1462 | validate_active_plugins() 1463 | validate_another_blog_signup() 1464 | validate_blog_form() 1465 | validate_blog_signup() 1466 | validate_current_theme() 1467 | validate_file_to_edit() 1468 | validate_file() 1469 | validate_plugin() 1470 | validate_user_form() 1471 | validate_user_signup() 1472 | validate_username() 1473 | verify_file_md5() 1474 | walk_category_dropdown_tree() 1475 | walk_category_tree() 1476 | walk_nav_menu_tree() 1477 | walk_page_dropdown_tree() 1478 | walk_page_tree() 1479 | weblog_ping() 1480 | welcome_user_msg_filter() 1481 | win_is_writable() 1482 | wlwmanifest_link() 1483 | wp_add_dashboard_widget() 1484 | wp_add_id3_tag_data() 1485 | wp_add_inline_style() 1486 | wp_add_object_terms() 1487 | wp_add_post_tags() 1488 | wp_admin_bar_add_secondary_groups() 1489 | wp_admin_bar_appearance_menu() 1490 | wp_admin_bar_comments_menu() 1491 | wp_admin_bar_customize_menu() 1492 | wp_admin_bar_edit_menu() 1493 | wp_admin_bar_header() 1494 | wp_admin_bar_my_account_item() 1495 | wp_admin_bar_my_account_menu() 1496 | wp_admin_bar_my_sites_menu() 1497 | wp_admin_bar_new_content_menu() 1498 | wp_admin_bar_render() 1499 | wp_admin_bar_search_menu() 1500 | wp_admin_bar_shortlink_menu() 1501 | wp_admin_bar_sidebar_toggle() 1502 | wp_admin_bar_site_menu() 1503 | wp_admin_bar_updates_menu() 1504 | wp_admin_bar_wp_menu() 1505 | wp_admin_canonical_url() 1506 | wp_admin_css_color() 1507 | wp_admin_css_uri() 1508 | wp_admin_css() 1509 | wp_ajax_add_link_category() 1510 | wp_ajax_add_menu_item() 1511 | wp_ajax_add_meta() 1512 | wp_ajax_add_tag() 1513 | wp_ajax_add_user() 1514 | wp_ajax_ajax_tag_search() 1515 | wp_ajax_autocomplete_user() 1516 | wp_ajax_closed_postboxes() 1517 | wp_ajax_crop_image() 1518 | wp_ajax_dashboard_widgets() 1519 | wp_ajax_date_format() 1520 | wp_ajax_delete_comment() 1521 | wp_ajax_delete_link() 1522 | wp_ajax_delete_meta() 1523 | wp_ajax_delete_page() 1524 | wp_ajax_delete_post() 1525 | wp_ajax_delete_tag() 1526 | wp_ajax_destroy_sessions() 1527 | wp_ajax_dim_comment() 1528 | wp_ajax_dismiss_wp_pointer() 1529 | wp_ajax_edit_comment() 1530 | wp_ajax_fetch_list() 1531 | wp_ajax_find_posts() 1532 | wp_ajax_get_attachment() 1533 | wp_ajax_get_comments() 1534 | wp_ajax_get_permalink() 1535 | wp_ajax_get_revision_diffs() 1536 | wp_ajax_get_tagcloud() 1537 | wp_ajax_heartbeat() 1538 | wp_ajax_hidden_columns() 1539 | wp_ajax_image_editor() 1540 | wp_ajax_imgedit_preview() 1541 | wp_ajax_inline_save_tax() 1542 | wp_ajax_inline_save() 1543 | wp_ajax_logged_in() 1544 | wp_ajax_menu_get_metabox() 1545 | wp_ajax_menu_locations_save() 1546 | wp_ajax_menu_quick_search() 1547 | wp_ajax_meta_box_order() 1548 | wp_ajax_nopriv_heartbeat() 1549 | wp_ajax_oembed_cache() 1550 | wp_ajax_parse_embed() 1551 | wp_ajax_parse_media_shortcode() 1552 | wp_ajax_press_this_add_category() 1553 | wp_ajax_press_this_save_post() 1554 | wp_ajax_query_attachments() 1555 | wp_ajax_query_themes() 1556 | wp_ajax_replyto_comment() 1557 | wp_ajax_sample_permalink() 1558 | wp_ajax_save_attachment_compat() 1559 | wp_ajax_save_attachment_order() 1560 | wp_ajax_save_attachment() 1561 | wp_ajax_save_user_color_scheme() 1562 | wp_ajax_save_widget() 1563 | wp_ajax_send_attachment_to_editor() 1564 | wp_ajax_send_link_to_editor() 1565 | wp_ajax_set_attachment_thumbnail() 1566 | wp_ajax_set_post_thumbnail() 1567 | wp_ajax_time_format() 1568 | wp_ajax_trash_post() 1569 | wp_ajax_untrash_post() 1570 | wp_ajax_update_plugin() 1571 | wp_ajax_update_welcome_panel() 1572 | wp_ajax_update_widget() 1573 | wp_ajax_upload_attachment() 1574 | wp_ajax_widgets_order() 1575 | wp_ajax_wp_compression_test() 1576 | wp_ajax_wp_fullscreen_save_post() 1577 | wp_ajax_wp_link_ajax() 1578 | wp_ajax_wp_remove_post_lock() 1579 | wp_allow_comment() 1580 | wp_allowed_protocols() 1581 | wp_array_slice_assoc() 1582 | wp_attachment_is_image() 1583 | wp_attachment_is() 1584 | wp_audio_shortcode() 1585 | wp_auth_check_html() 1586 | wp_auth_check_load() 1587 | wp_auth_check() 1588 | wp_authenticate_cookie() 1589 | wp_authenticate_spam_check() 1590 | wp_authenticate_username_password() 1591 | wp_authenticate() 1592 | wp_autosave() 1593 | wp_basename() 1594 | wp_blacklist_check() 1595 | wp_cache_add_global_groups() 1596 | wp_cache_add_non_persistent_groups() 1597 | wp_cache_add() 1598 | wp_cache_close() 1599 | wp_cache_decr() 1600 | wp_cache_delete() 1601 | wp_cache_flush() 1602 | wp_cache_get() 1603 | wp_cache_incr() 1604 | wp_cache_init() 1605 | wp_cache_replace() 1606 | wp_cache_set() 1607 | wp_cache_switch_to_blog() 1608 | wp_can_install_language_pack() 1609 | wp_caption_input_textarea() 1610 | wp_category_checklist() 1611 | wp_check_browser_version() 1612 | wp_check_filetype_and_ext() 1613 | wp_check_filetype() 1614 | wp_check_for_changed_slugs() 1615 | wp_check_invalid_utf8() 1616 | wp_check_locked_posts() 1617 | wp_check_mysql_version() 1618 | wp_check_password() 1619 | wp_check_php_mysql_versions() 1620 | wp_check_post_hierarchy_for_loops() 1621 | wp_check_post_lock() 1622 | wp_check_term_hierarchy_for_loops() 1623 | wp_checkdate() 1624 | wp_clean_plugins_cache() 1625 | wp_clean_themes_cache() 1626 | wp_clean_update_cache() 1627 | wp_clear_auth_cookie() 1628 | wp_clear_scheduled_hook() 1629 | wp_clone() 1630 | wp_color_scheme_settings() 1631 | wp_comment_form_unfiltered_html_nonce() 1632 | wp_comment_reply() 1633 | wp_comment_trashnotice() 1634 | wp_constrain_dimensions() 1635 | wp_convert_hr_to_bytes() 1636 | wp_convert_widget_settings() 1637 | wp_cookie_constants() 1638 | wp_count_attachments() 1639 | wp_count_comments() 1640 | wp_count_posts() 1641 | wp_count_terms() 1642 | wp_create_category() 1643 | wp_create_nav_menu() 1644 | wp_create_nonce() 1645 | wp_create_post_autosave() 1646 | wp_create_tag() 1647 | wp_create_term() 1648 | wp_create_user() 1649 | wp_credits() 1650 | wp_cron() 1651 | wp_crop_image() 1652 | wp_customize_support_script() 1653 | wp_customize_url() 1654 | wp_dashboard_browser_nag() 1655 | wp_dashboard_cached_rss_widget() 1656 | wp_dashboard_empty() 1657 | wp_dashboard_plugins_output() 1658 | wp_dashboard_primary_output() 1659 | wp_dashboard_primary() 1660 | wp_dashboard_quick_press_output() 1661 | wp_dashboard_quick_press() 1662 | wp_dashboard_quota() 1663 | wp_dashboard_recent_comments() 1664 | wp_dashboard_recent_drafts() 1665 | wp_dashboard_recent_posts() 1666 | wp_dashboard_right_now() 1667 | wp_dashboard_rss_control() 1668 | wp_dashboard_rss_output() 1669 | wp_dashboard_setup() 1670 | wp_dashboard_site_activity() 1671 | wp_dashboard_trigger_widget_control() 1672 | wp_dashboard() 1673 | wp_debug_backtrace_summary() 1674 | wp_debug_mode() 1675 | wp_default_editor() 1676 | wp_default_scripts() 1677 | wp_default_styles() 1678 | wp_defer_comment_counting() 1679 | wp_defer_term_counting() 1680 | wp_delete_attachment() 1681 | wp_delete_auto_drafts() 1682 | wp_delete_category() 1683 | wp_delete_comment() 1684 | wp_delete_file() 1685 | wp_delete_link() 1686 | wp_delete_nav_menu() 1687 | wp_delete_object_term_relationships() 1688 | wp_delete_post_revision() 1689 | wp_delete_post() 1690 | wp_delete_term() 1691 | wp_delete_user() 1692 | wp_dequeue_script() 1693 | wp_dequeue_style() 1694 | wp_deregister_script() 1695 | wp_deregister_style() 1696 | wp_destroy_all_sessions() 1697 | wp_destroy_current_session() 1698 | wp_destroy_other_sessions() 1699 | wp_die() 1700 | wp_doc_link_parse() 1701 | wp_download_language_pack() 1702 | wp_dropdown_categories() 1703 | wp_dropdown_cats() 1704 | wp_dropdown_languages() 1705 | wp_dropdown_pages() 1706 | wp_dropdown_roles() 1707 | wp_dropdown_users() 1708 | wp_edit_attachments_query_vars() 1709 | wp_edit_attachments_query() 1710 | wp_edit_posts_query() 1711 | wp_editor() 1712 | wp_embed_defaults() 1713 | wp_embed_handler_audio() 1714 | wp_embed_handler_googlevideo() 1715 | wp_embed_handler_video() 1716 | wp_embed_handler_youtube() 1717 | wp_embed_register_handler() 1718 | wp_embed_unregister_handler() 1719 | wp_encode_emoji() 1720 | wp_enqueue_media() 1721 | wp_enqueue_script() 1722 | wp_enqueue_scripts() 1723 | wp_enqueue_style() 1724 | wp_exif_date2ts() 1725 | wp_exif_frac2dec() 1726 | wp_expand_dimensions() 1727 | wp_ext2type() 1728 | wp_extract_urls() 1729 | wp_favicon_request() 1730 | WP_Filesystem() 1731 | wp_filter_comment() 1732 | wp_filter_kses() 1733 | wp_filter_nohtml_kses() 1734 | wp_filter_object_list() 1735 | wp_filter_post_kses() 1736 | wp_find_hierarchy_loop_tortoise_hare() 1737 | wp_find_hierarchy_loop() 1738 | wp_fix_server_vars() 1739 | wp_footer() 1740 | wp_functionality_constants() 1741 | wp_generate_attachment_metadata() 1742 | wp_generate_auth_cookie() 1743 | wp_generate_password() 1744 | wp_generate_tag_cloud() 1745 | wp_generator() 1746 | wp_get_active_and_valid_plugins() 1747 | wp_get_active_network_plugins() 1748 | wp_get_all_sessions() 1749 | wp_get_archives() 1750 | wp_get_associated_nav_menu_items() 1751 | wp_get_attachment_id3_keys() 1752 | wp_get_attachment_image_src() 1753 | wp_get_attachment_image() 1754 | wp_get_attachment_link() 1755 | wp_get_attachment_metadata() 1756 | wp_get_attachment_thumb_file() 1757 | wp_get_attachment_thumb_url() 1758 | wp_get_attachment_url() 1759 | wp_get_audio_extensions() 1760 | wp_get_available_translations() 1761 | wp_get_comment_status() 1762 | wp_get_current_commenter() 1763 | wp_get_current_user() 1764 | wp_get_db_schema() 1765 | wp_get_http_headers() 1766 | wp_get_http() 1767 | wp_get_image_editor() 1768 | wp_get_installed_translations() 1769 | wp_get_link_cats() 1770 | wp_get_mime_types() 1771 | wp_get_mu_plugins() 1772 | wp_get_nav_menu_items() 1773 | wp_get_nav_menu_object() 1774 | wp_get_nav_menu_to_edit() 1775 | wp_get_nav_menus() 1776 | wp_get_network() 1777 | wp_get_nocache_headers() 1778 | wp_get_object_terms() 1779 | wp_get_original_referer() 1780 | wp_get_password_hint() 1781 | wp_get_pomo_file_data() 1782 | wp_get_popular_importers() 1783 | wp_get_post_autosave() 1784 | wp_get_post_categories() 1785 | wp_get_post_parent_id() 1786 | wp_get_post_revision() 1787 | wp_get_post_revisions() 1788 | wp_get_post_tags() 1789 | wp_get_post_terms() 1790 | wp_get_recent_posts() 1791 | wp_get_referer() 1792 | wp_get_revision_ui_diff() 1793 | wp_get_schedule() 1794 | wp_get_schedules() 1795 | wp_get_session_token() 1796 | wp_get_shortlink() 1797 | wp_get_sidebars_widgets() 1798 | wp_get_sites() 1799 | wp_get_split_term() 1800 | wp_get_split_terms() 1801 | wp_get_term_taxonomy_parent_id() 1802 | wp_get_theme() 1803 | wp_get_themes() 1804 | wp_get_translation_updates() 1805 | wp_get_update_data() 1806 | wp_get_user_contact_methods() 1807 | wp_get_video_extensions() 1808 | wp_get_widget_defaults() 1809 | wp_guess_url() 1810 | wp_handle_sideload() 1811 | wp_handle_upload_error() 1812 | wp_handle_upload() 1813 | wp_hash_password() 1814 | wp_hash() 1815 | wp_head() 1816 | wp_heartbeat_set_suspension() 1817 | wp_heartbeat_settings() 1818 | wp_html_excerpt() 1819 | wp_htmledit_pre() 1820 | wp_http_supports() 1821 | wp_http_validate_url() 1822 | wp_iframe() 1823 | wp_image_editor_supports() 1824 | wp_image_editor() 1825 | wp_imagecreatetruecolor() 1826 | wp_import_cleanup() 1827 | wp_import_handle_upload() 1828 | wp_import_upload_form() 1829 | wp_initial_constants() 1830 | wp_initial_nav_menu_meta_boxes() 1831 | wp_insert_attachment() 1832 | wp_insert_category() 1833 | wp_insert_comment() 1834 | wp_insert_link() 1835 | wp_insert_post() 1836 | wp_insert_term() 1837 | wp_insert_user() 1838 | wp_install_defaults() 1839 | wp_install_language_form() 1840 | wp_install_maybe_enable_pretty_permalinks() 1841 | wp_install() 1842 | wp_is_large_network() 1843 | wp_is_mobile() 1844 | wp_is_post_autosave() 1845 | wp_is_post_revision() 1846 | wp_is_stream() 1847 | wp_is_writable() 1848 | wp_iso_descrambler() 1849 | wp_json_encode() 1850 | wp_just_in_time_script_localization() 1851 | wp_kses_allowed_html() 1852 | wp_kses_array_lc() 1853 | wp_kses_attr() 1854 | wp_kses_bad_protocol_once() 1855 | wp_kses_bad_protocol_once2() 1856 | wp_kses_bad_protocol() 1857 | wp_kses_check_attr_val() 1858 | wp_kses_data() 1859 | wp_kses_decode_entities() 1860 | wp_kses_hair() 1861 | wp_kses_hook() 1862 | wp_kses_html_error() 1863 | wp_kses_js_entities() 1864 | wp_kses_named_entities() 1865 | wp_kses_no_null() 1866 | wp_kses_normalize_entities() 1867 | wp_kses_normalize_entities2() 1868 | wp_kses_normalize_entities3() 1869 | wp_kses_post() 1870 | wp_kses_split() 1871 | wp_kses_split2() 1872 | wp_kses_stripslashes() 1873 | wp_kses_version() 1874 | wp_kses() 1875 | wp_link_category_checklist() 1876 | wp_link_manager_disabled_message() 1877 | wp_link_pages() 1878 | wp_list_authors() 1879 | wp_list_bookmarks() 1880 | wp_list_categories() 1881 | wp_list_comments() 1882 | wp_list_filter() 1883 | wp_list_pages() 1884 | wp_list_pluck() 1885 | wp_list_post_revisions() 1886 | wp_list_widget_controls_dynamic_sidebar() 1887 | wp_list_widget_controls() 1888 | wp_list_widgets() 1889 | wp_load_alloptions() 1890 | wp_load_core_site_options() 1891 | wp_load_translations_early() 1892 | wp_localize_script() 1893 | wp_login_form() 1894 | wp_login_url() 1895 | wp_login_viewport_meta() 1896 | wp_loginout() 1897 | wp_logout_url() 1898 | wp_logout() 1899 | wp_lostpassword_url() 1900 | wp_magic_quotes() 1901 | wp_mail() 1902 | wp_maintenance() 1903 | wp_make_link_relative() 1904 | wp_match_mime_types() 1905 | wp_max_upload_size() 1906 | wp_maybe_auto_update() 1907 | wp_maybe_generate_attachment_metadata() 1908 | wp_maybe_load_embeds() 1909 | wp_maybe_load_widgets() 1910 | wp_maybe_update_network_site_counts() 1911 | wp_maybe_update_network_user_counts() 1912 | wp_media_attach_action() 1913 | wp_media_insert_url_form() 1914 | wp_media_upload_handler() 1915 | wp_mediaelement_fallback() 1916 | wp_meta() 1917 | wp_mime_type_icon() 1918 | wp_mkdir_p() 1919 | wp_nav_menu_disabled_check() 1920 | wp_nav_menu_item_link_meta_box() 1921 | wp_nav_menu_item_post_type_meta_box() 1922 | wp_nav_menu_item_taxonomy_meta_box() 1923 | wp_nav_menu_locations_meta_box() 1924 | wp_nav_menu_manage_columns() 1925 | wp_nav_menu_max_depth() 1926 | wp_nav_menu_post_type_meta_boxes() 1927 | wp_nav_menu_setup() 1928 | wp_nav_menu_taxonomy_meta_boxes() 1929 | wp_nav_menu_update_menu_items() 1930 | wp_nav_menu() 1931 | wp_network_dashboard_right_now() 1932 | wp_new_blog_notification() 1933 | wp_new_comment() 1934 | wp_new_user_notification() 1935 | wp_next_scheduled() 1936 | wp_no_robots() 1937 | wp_nonce_ays() 1938 | wp_nonce_field() 1939 | wp_nonce_tick() 1940 | wp_nonce_url() 1941 | wp_normalize_path() 1942 | wp_not_installed() 1943 | wp_notify_moderator() 1944 | wp_notify_postauthor() 1945 | wp_ob_end_flush_all() 1946 | wp_oembed_add_provider() 1947 | wp_oembed_get() 1948 | wp_oembed_remove_provider() 1949 | wp_old_slug_redirect() 1950 | wp_original_referer_field() 1951 | wp_page_menu() 1952 | wp_parse_args() 1953 | wp_parse_auth_cookie() 1954 | wp_parse_id_list() 1955 | wp_parse_str() 1956 | wp_password_change_notification() 1957 | wp_playlist_scripts() 1958 | wp_playlist_shortcode() 1959 | wp_plugin_directory_constants() 1960 | wp_plugin_update_row() 1961 | wp_plugin_update_rows() 1962 | wp_plupload_default_settings() 1963 | wp_popular_terms_checklist() 1964 | wp_post_mime_type_where() 1965 | wp_post_preview_js() 1966 | wp_post_revision_title_expanded() 1967 | wp_post_revision_title() 1968 | wp_pre_kses_less_than_callback() 1969 | wp_pre_kses_less_than() 1970 | wp_preload_dialogs() 1971 | wp_prepare_attachment_for_js() 1972 | wp_prepare_revisions_for_js() 1973 | wp_prepare_themes_for_js() 1974 | wp_print_editor_js() 1975 | wp_print_footer_scripts() 1976 | wp_print_head_scripts() 1977 | wp_print_media_templates() 1978 | wp_print_request_filesystem_credentials_modal() 1979 | wp_print_revision_templates() 1980 | wp_print_scripts() 1981 | wp_print_styles() 1982 | wp_protect_special_option() 1983 | wp_prototype_before_jquery() 1984 | wp_publish_post() 1985 | wp_quicktags() 1986 | wp_rand() 1987 | wp_read_audio_metadata() 1988 | wp_read_image_metadata() 1989 | wp_read_video_metadata() 1990 | wp_redirect_admin_locations() 1991 | wp_redirect() 1992 | wp_referer_field() 1993 | wp_refresh_post_lock() 1994 | wp_refresh_post_nonces() 1995 | wp_register_plugin_realpath() 1996 | wp_register_script() 1997 | wp_register_sidebar_widget() 1998 | wp_register_style() 1999 | wp_register_widget_control() 2000 | wp_register() 2001 | wp_registration_url() 2002 | wp_rel_nofollow_callback() 2003 | wp_rel_nofollow() 2004 | wp_remote_fopen() 2005 | wp_remote_get() 2006 | wp_remote_head() 2007 | wp_remote_post() 2008 | wp_remote_request() 2009 | wp_remote_retrieve_body() 2010 | wp_remote_retrieve_header() 2011 | wp_remote_retrieve_headers() 2012 | wp_remote_retrieve_response_code() 2013 | wp_remote_retrieve_response_message() 2014 | wp_remove_object_terms() 2015 | wp_reschedule_event() 2016 | wp_reset_postdata() 2017 | wp_reset_query() 2018 | wp_reset_vars() 2019 | wp_resolve_numeric_slug_conflicts() 2020 | wp_restore_image() 2021 | wp_restore_post_revision() 2022 | wp_revisions_enabled() 2023 | wp_revisions_to_keep() 2024 | wp_revoke_user() 2025 | wp_richedit_pre() 2026 | wp_roles() 2027 | wp_rss() 2028 | wp_safe_redirect() 2029 | wp_safe_remote_get() 2030 | wp_safe_remote_head() 2031 | wp_safe_remote_post() 2032 | wp_safe_remote_request() 2033 | wp_salt() 2034 | wp_sanitize_redirect() 2035 | wp_save_image_file() 2036 | wp_save_image() 2037 | wp_save_nav_menu_items() 2038 | wp_save_post_revision() 2039 | wp_schedule_event() 2040 | wp_schedule_single_event() 2041 | wp_schedule_update_checks() 2042 | wp_schedule_update_network_counts() 2043 | wp_scheduled_delete() 2044 | wp_script_add_data() 2045 | wp_script_is() 2046 | wp_scripts() 2047 | wp_send_json_error() 2048 | wp_send_json_success() 2049 | wp_send_json() 2050 | wp_set_all_user_settings() 2051 | wp_set_auth_cookie() 2052 | wp_set_comment_cookies() 2053 | wp_set_comment_status() 2054 | wp_set_current_user() 2055 | wp_set_internal_encoding() 2056 | wp_set_lang_dir() 2057 | wp_set_link_cats() 2058 | wp_set_object_terms() 2059 | wp_set_password() 2060 | wp_set_post_categories() 2061 | wp_set_post_lock() 2062 | wp_set_post_tags() 2063 | wp_set_post_terms() 2064 | wp_set_sidebars_widgets() 2065 | wp_set_wpdb_vars() 2066 | wp_setup_nav_menu_item() 2067 | wp_shake_js() 2068 | wp_shortlink_header() 2069 | wp_shortlink_wp_head() 2070 | wp_should_upgrade_global_tables() 2071 | wp_shrink_dimensions() 2072 | wp_sidebar_description() 2073 | wp_signon() 2074 | wp_site_icon() 2075 | wp_slash() 2076 | wp_spaces_regexp() 2077 | wp_spam_comment() 2078 | wp_specialchars_decode() 2079 | wp_sprintf_l() 2080 | wp_sprintf() 2081 | wp_ssl_constants() 2082 | wp_star_rating() 2083 | wp_start_object_cache() 2084 | wp_staticize_emoji() 2085 | wp_stream_image() 2086 | wp_strip_all_tags() 2087 | wp_style_add_data() 2088 | wp_style_is() 2089 | wp_style_loader_src() 2090 | wp_styles() 2091 | wp_suspend_cache_addition() 2092 | wp_suspend_cache_invalidation() 2093 | wp_tag_cloud() 2094 | wp_templating_constants() 2095 | wp_tempnam() 2096 | wp_terms_checklist() 2097 | wp_text_diff() 2098 | wp_theme_update_row() 2099 | wp_theme_update_rows() 2100 | wp_throttle_comment_flood() 2101 | wp_timezone_choice() 2102 | wp_timezone_override_offset() 2103 | wp_tiny_mce() 2104 | wp_title_rss() 2105 | wp_title() 2106 | wp_transition_comment_status() 2107 | wp_transition_post_status() 2108 | wp_trash_comment() 2109 | wp_trash_post_comments() 2110 | wp_trash_post() 2111 | wp_trim_excerpt() 2112 | wp_trim_words() 2113 | wp_underscore_audio_template() 2114 | wp_underscore_playlist_templates() 2115 | wp_underscore_video_template() 2116 | wp_unique_filename() 2117 | wp_unique_post_slug() 2118 | wp_unique_term_slug() 2119 | wp_unregister_GLOBALS() 2120 | wp_unregister_sidebar_widget() 2121 | wp_unregister_widget_control() 2122 | wp_unschedule_event() 2123 | wp_unslash() 2124 | wp_unspam_comment() 2125 | wp_untrash_comment() 2126 | wp_untrash_post_comments() 2127 | wp_untrash_post() 2128 | wp_update_attachment_metadata() 2129 | wp_update_category() 2130 | wp_update_comment_count_now() 2131 | wp_update_comment_count() 2132 | wp_update_comment() 2133 | wp_update_core() 2134 | wp_update_link() 2135 | wp_update_nav_menu_item() 2136 | wp_update_nav_menu_object() 2137 | wp_update_network_counts() 2138 | wp_update_network_site_counts() 2139 | wp_update_network_user_counts() 2140 | wp_update_plugin() 2141 | wp_update_plugins() 2142 | wp_update_post() 2143 | wp_update_term_count_now() 2144 | wp_update_term_count() 2145 | wp_update_term() 2146 | wp_update_theme() 2147 | wp_update_themes() 2148 | wp_update_user() 2149 | wp_upgrade() 2150 | wp_upload_bits() 2151 | wp_upload_dir() 2152 | wp_user_settings() 2153 | wp_using_ext_object_cache() 2154 | wp_validate_auth_cookie() 2155 | wp_validate_boolean() 2156 | wp_validate_logged_in_cookie() 2157 | wp_validate_redirect() 2158 | wp_verify_nonce() 2159 | wp_version_check() 2160 | wp_video_shortcode() 2161 | wp_welcome_panel() 2162 | wp_widget_control() 2163 | wp_widget_description() 2164 | wp_widget_rss_form() 2165 | wp_widget_rss_output() 2166 | wp_widget_rss_process() 2167 | wp_widgets_access_body_class() 2168 | wp_widgets_add_menu() 2169 | wp_widgets_init() 2170 | wp_write_post() 2171 | wp() 2172 | wpautop() 2173 | wpmu_activate_signup() 2174 | wpmu_activate_stylesheet() 2175 | wpmu_create_blog() 2176 | wpmu_create_user() 2177 | wpmu_delete_blog() 2178 | wpmu_delete_user() 2179 | wpmu_log_new_registrations() 2180 | wpmu_signup_blog_notification() 2181 | wpmu_signup_blog() 2182 | wpmu_signup_stylesheet() 2183 | wpmu_signup_user_notification() 2184 | wpmu_signup_user() 2185 | wpmu_update_blogs_date() 2186 | wpmu_validate_blog_signup() 2187 | wpmu_validate_user_signup() 2188 | wpmu_welcome_notification() 2189 | wpmu_welcome_user_notification() 2190 | wptexturize_primes() 2191 | wptexturize() 2192 | wpview_media_sandbox_styles() 2193 | write_post() 2194 | wxr_authors_list() 2195 | wxr_cat_name() 2196 | wxr_category_description() 2197 | wxr_cdata() 2198 | wxr_filter_postmeta() 2199 | wxr_nav_menu_terms() 2200 | wxr_post_taxonomy() 2201 | wxr_site_url() 2202 | wxr_tag_description() 2203 | wxr_tag_name() 2204 | wxr_term_description() 2205 | wxr_term_name() 2206 | xfn_check() 2207 | xmlrpc_getpostcategory() 2208 | xmlrpc_getposttitle() 2209 | xmlrpc_pingback_error() 2210 | xmlrpc_removepostdata() 2211 | zeroise() --------------------------------------------------------------------------------