Skip to content

Instantly share code, notes, and snippets.

@xeoncross
Last active November 5, 2016 09:40
Show Gist options
  • Save xeoncross/7ce06e22d109db3eec28 to your computer and use it in GitHub Desktop.
Save xeoncross/7ce06e22d109db3eec28 to your computer and use it in GitHub Desktop.
Mostly complete list of all wordpress functions

The output of running grep against the wordpress include directory

grep -r --color=auto --include \*.php "^function " ./wp-includes > functions.txt 

Please note that this does not include plugin, theme, admin, or even the root php file functions. This also does not include functions which do not start at the begining of the line (like class methods or functions wrapped in function_exists).

Also see a count of the whole system

grep -r --color=auto --include \*.php -o "^function " . | wc -l

// -> 2620

http://developer.wordpress.org/reference/

https://gist.github.com/Xeoncross/702e92c42903ce7529cb

./wp-includes/admin-bar.php:function _wp_admin_bar_init() {
./wp-includes/admin-bar.php:function wp_admin_bar_render() {
./wp-includes/admin-bar.php:function wp_admin_bar_wp_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_sidebar_toggle( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_my_account_item( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_my_account_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_site_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_my_sites_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_shortlink_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_edit_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_new_content_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_comments_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_appearance_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_updates_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_search_menu( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_add_secondary_groups( $wp_admin_bar ) {
./wp-includes/admin-bar.php:function wp_admin_bar_header() { ?>
./wp-includes/admin-bar.php:function _admin_bar_bump_cb() { ?>
./wp-includes/admin-bar.php:function show_admin_bar( $show ) {
./wp-includes/admin-bar.php:function is_admin_bar_showing() {
./wp-includes/admin-bar.php:function _get_admin_bar_pref( $context = 'front', $user = 0 ) {
./wp-includes/author-template.php:function get_the_author($deprecated = '') {
./wp-includes/author-template.php:function the_author( $deprecated = '', $deprecated_echo = true ) {
./wp-includes/author-template.php:function get_the_modified_author() {
./wp-includes/author-template.php:function the_modified_author() {
./wp-includes/author-template.php:function get_the_author_meta( $field = '', $user_id = false ) {
./wp-includes/author-template.php:function the_author_meta( $field = '', $user_id = false ) {
./wp-includes/author-template.php:function get_the_author_link() {
./wp-includes/author-template.php:function the_author_link() {
./wp-includes/author-template.php:function get_the_author_posts() {
./wp-includes/author-template.php:function the_author_posts() {
./wp-includes/author-template.php:function the_author_posts_link($deprecated = '') {
./wp-includes/author-template.php:function get_author_posts_url($author_id, $author_nicename = '') {
./wp-includes/author-template.php:function wp_list_authors($args = '') {
./wp-includes/author-template.php:function is_multi_author() {
./wp-includes/author-template.php:function __clear_multi_author_cache() {
./wp-includes/bookmark-template.php:function _walk_bookmarks($bookmarks, $args = '' ) {
./wp-includes/bookmark-template.php:function wp_list_bookmarks($args = '') {
./wp-includes/bookmark.php:function get_bookmark($bookmark, $output = OBJECT, $filter = 'raw') {
./wp-includes/bookmark.php:function get_bookmark_field( $field, $bookmark, $context = 'display' ) {
./wp-includes/bookmark.php:function get_bookmarks($args = '') {
./wp-includes/bookmark.php:function sanitize_bookmark($bookmark, $context = 'display') {
./wp-includes/bookmark.php:function sanitize_bookmark_field($field, $value, $bookmark_id, $context) {
./wp-includes/bookmark.php:function clean_bookmark_cache( $bookmark_id ) {
./wp-includes/cache.php:function wp_cache_add( $key, $data, $group = '', $expire = 0 ) {
./wp-includes/cache.php:function wp_cache_close() {
./wp-includes/cache.php:function wp_cache_decr( $key, $offset = 1, $group = '' ) {
./wp-includes/cache.php:function wp_cache_delete($key, $group = '') {
./wp-includes/cache.php:function wp_cache_flush() {
./wp-includes/cache.php:function wp_cache_get( $key, $group = '', $force = false, &$found = null ) {
./wp-includes/cache.php:function wp_cache_incr( $key, $offset = 1, $group = '' ) {
./wp-includes/cache.php:function wp_cache_init() {
./wp-includes/cache.php:function wp_cache_replace( $key, $data, $group = '', $expire = 0 ) {
./wp-includes/cache.php:function wp_cache_set( $key, $data, $group = '', $expire = 0 ) {
./wp-includes/cache.php:function wp_cache_switch_to_blog( $blog_id ) {
./wp-includes/cache.php:function wp_cache_add_global_groups( $groups ) {
./wp-includes/cache.php:function wp_cache_add_non_persistent_groups( $groups ) {
./wp-includes/cache.php:function wp_cache_reset() {
./wp-includes/canonical.php:function redirect_canonical( $requested_url = null, $do_redirect = true ) {
./wp-includes/canonical.php:function _remove_qs_args_if_not_in_url( $query_string, Array $args_to_check, $url ) {
./wp-includes/canonical.php:function redirect_guess_404_permalink() {
./wp-includes/canonical.php:function wp_redirect_admin_locations() {
./wp-includes/capabilities.php:function map_meta_cap( $cap, $user_id ) {
./wp-includes/capabilities.php:function current_user_can( $capability ) {
./wp-includes/capabilities.php:function current_user_can_for_blog( $blog_id, $capability ) {
./wp-includes/capabilities.php:function author_can( $post, $capability ) {
./wp-includes/capabilities.php:function user_can( $user, $capability ) {
./wp-includes/capabilities.php:function get_role( $role ) {
./wp-includes/capabilities.php:function add_role( $role, $display_name, $capabilities = array() ) {
./wp-includes/capabilities.php:function remove_role( $role ) {
./wp-includes/capabilities.php:function get_super_admins() {
./wp-includes/capabilities.php:function is_super_admin( $user_id = false ) {
./wp-includes/category-template.php:function get_category_link( $category ) {
./wp-includes/category-template.php:function get_category_parents( $id, $link = false, $separator = '/', $nicename = false, $visited = array() ) {
./wp-includes/category-template.php:function get_the_category( $id = false ) {
./wp-includes/category-template.php:function _usort_terms_by_name( $a, $b ) {
./wp-includes/category-template.php:function _usort_terms_by_ID( $a, $b ) {
./wp-includes/category-template.php:function get_the_category_by_ID( $cat_ID ) {
./wp-includes/category-template.php:function get_the_category_list( $separator = '', $parents='', $post_id = false ) {
./wp-includes/category-template.php:function in_category( $category, $post = null ) {
./wp-includes/category-template.php:function the_category( $separator = '', $parents='', $post_id = false ) {
./wp-includes/category-template.php:function category_description( $category = 0 ) {
./wp-includes/category-template.php:function wp_dropdown_categories( $args = '' ) {
./wp-includes/category-template.php:function wp_list_categories( $args = '' ) {
./wp-includes/category-template.php:function wp_tag_cloud( $args = '' ) {
./wp-includes/category-template.php:function default_topic_count_scale( $count ) {
./wp-includes/category-template.php:function wp_generate_tag_cloud( $tags, $args = '' ) {
./wp-includes/category-template.php:function _wp_object_name_sort_cb( $a, $b ) {
./wp-includes/category-template.php:function _wp_object_count_sort_cb( $a, $b ) {
./wp-includes/category-template.php:function walk_category_tree() {
./wp-includes/category-template.php:function walk_category_dropdown_tree() {
./wp-includes/category-template.php:function get_tag_link( $tag ) {
./wp-includes/category-template.php:function get_the_tags( $id = 0 ) {
./wp-includes/category-template.php:function get_the_tag_list( $before = '', $sep = '', $after = '', $id = 0 ) {
./wp-includes/category-template.php:function the_tags( $before = null, $sep = ', ', $after = '' ) {
./wp-includes/category-template.php:function tag_description( $tag = 0 ) {
./wp-includes/category-template.php:function term_description( $term = 0, $taxonomy = 'post_tag' ) {
./wp-includes/category-template.php:function get_the_terms( $post, $taxonomy ) {
./wp-includes/category-template.php:function get_the_term_list( $id, $taxonomy, $before = '', $sep = '', $after = '' ) {
./wp-includes/category-template.php:function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' ) {
./wp-includes/category-template.php:function has_category( $category = '', $post = null ) {
./wp-includes/category-template.php:function has_tag( $tag = '', $post = null ) {
./wp-includes/category-template.php:function has_term( $term = '', $taxonomy = '', $post = null ) {
./wp-includes/category.php:function get_all_category_ids() {
./wp-includes/category.php:function get_categories( $args = '' ) {
./wp-includes/category.php:function get_category( $category, $output = OBJECT, $filter = 'raw' ) {
./wp-includes/category.php:function get_category_by_path( $category_path, $full_match = true, $output = OBJECT ) {
./wp-includes/category.php:function get_category_by_slug( $slug ) {
./wp-includes/category.php:function get_cat_ID( $cat_name ) {
./wp-includes/category.php:function get_cat_name( $cat_id ) {
./wp-includes/category.php:function cat_is_ancestor_of( $cat1, $cat2 ) {
./wp-includes/category.php:function sanitize_category( $category, $context = 'display' ) {
./wp-includes/category.php:function sanitize_category_field( $field, $value, $cat_id, $context ) {
./wp-includes/category.php:function get_tags( $args = '' ) {
./wp-includes/category.php:function get_tag( $tag, $output = OBJECT, $filter = 'raw' ) {
./wp-includes/category.php:function clean_category_cache( $id ) {
./wp-includes/category.php:function _make_cat_compat( &$category ) {
./wp-includes/class-oembed.php:function _wp_oembed_get_object() {
./wp-includes/class-simplepie.php:function wp_simplepie_autoload( $class ) {
./wp-includes/class-wp-customize-manager.php:function sanitize_hex_color( $color ) {
./wp-includes/class-wp-customize-manager.php:function sanitize_hex_color_no_hash( $color ) {
./wp-includes/class-wp-customize-manager.php:function maybe_hash_hex_color( $color ) {
./wp-includes/class-wp-error.php:function is_wp_error($thing) {
./wp-includes/comment-template.php:function get_comment_author( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_author( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function get_comment_author_email( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_author_email( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_author_email_link( $linktext = '', $before = '', $after = '' ) {
./wp-includes/comment-template.php:function get_comment_author_email_link( $linktext = '', $before = '', $after = '' ) {
./wp-includes/comment-template.php:function get_comment_author_link( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_author_link( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function get_comment_author_IP( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_author_IP( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function get_comment_author_url( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_author_url( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function get_comment_author_url_link( $linktext = '', $before = '', $after = '' ) {
./wp-includes/comment-template.php:function comment_author_url_link( $linktext = '', $before = '', $after = '' ) {
./wp-includes/comment-template.php:function comment_class( $class = '', $comment_id = null, $post_id = null, $echo = true ) {
./wp-includes/comment-template.php:function get_comment_class( $class = '', $comment_id = null, $post_id = null ) {
./wp-includes/comment-template.php:function get_comment_date( $d = '', $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_date( $d = '', $comment_ID = 0 ) {
./wp-includes/comment-template.php:function get_comment_excerpt( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_excerpt( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function get_comment_ID() {
./wp-includes/comment-template.php:function comment_ID() {
./wp-includes/comment-template.php:function get_comment_link( $comment = null, $args = array() ) {
./wp-includes/comment-template.php:function get_comments_link( $post_id = 0 ) {
./wp-includes/comment-template.php:function comments_link( $deprecated = '', $deprecated_2 = '' ) {
./wp-includes/comment-template.php:function get_comments_number( $post_id = 0 ) {
./wp-includes/comment-template.php:function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' ) {
./wp-includes/comment-template.php:function get_comment_text( $comment_ID = 0, $args = array() ) {
./wp-includes/comment-template.php:function comment_text( $comment_ID = 0, $args = array() ) {
./wp-includes/comment-template.php:function get_comment_time( $d = '', $gmt = false, $translate = true ) {
./wp-includes/comment-template.php:function comment_time( $d = '' ) {
./wp-includes/comment-template.php:function get_comment_type( $comment_ID = 0 ) {
./wp-includes/comment-template.php:function comment_type( $commenttxt = false, $trackbacktxt = false, $pingbacktxt = false ) {
./wp-includes/comment-template.php:function get_trackback_url() {
./wp-includes/comment-template.php:function trackback_url( $deprecated_echo = true ) {
./wp-includes/comment-template.php:function trackback_rdf( $deprecated = '' ) {
./wp-includes/comment-template.php:function comments_open( $post_id = null ) {
./wp-includes/comment-template.php:function pings_open( $post_id = null ) {
./wp-includes/comment-template.php:function wp_comment_form_unfiltered_html_nonce() {
./wp-includes/comment-template.php:function comments_template( $file = '/comments.php', $separate_comments = false ) {
./wp-includes/comment-template.php:function comments_popup_script( $width = 400, $height = 400, $file = '' ) {
./wp-includes/comment-template.php:function comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false ) {
./wp-includes/comment-template.php:function get_comment_reply_link($args = array(), $comment = null, $post = null) {
./wp-includes/comment-template.php:function comment_reply_link($args = array(), $comment = null, $post = null) {
./wp-includes/comment-template.php:function get_post_reply_link($args = array(), $post = null) {
./wp-includes/comment-template.php:function post_reply_link($args = array(), $post = null) {
./wp-includes/comment-template.php:function get_cancel_comment_reply_link( $text = '' ) {
./wp-includes/comment-template.php:function cancel_comment_reply_link( $text = '' ) {
./wp-includes/comment-template.php:function get_comment_id_fields( $id = 0 ) {
./wp-includes/comment-template.php:function comment_id_fields( $id = 0 ) {
./wp-includes/comment-template.php:function comment_form_title( $noreplytext = false, $replytext = false, $linktoparent = true ) {
./wp-includes/comment-template.php:function wp_list_comments( $args = array(), $comments = null ) {
./wp-includes/comment-template.php:function comment_form( $args = array(), $post_id = null ) {
./wp-includes/comment.php:function check_comment($author, $email, $url, $comment, $user_ip, $user_agent, $comment_type) {
./wp-includes/comment.php:function get_approved_comments($post_id) {
./wp-includes/comment.php:function get_comment(&$comment, $output = OBJECT) {
./wp-includes/comment.php:function get_comments( $args = '' ) {
./wp-includes/comment.php:function get_comment_statuses() {
./wp-includes/comment.php:function get_lastcommentmodified($timezone = 'server') {
./wp-includes/comment.php:function get_comment_count( $post_id = 0 ) {
./wp-includes/comment.php:function add_comment_meta($comment_id, $meta_key, $meta_value, $unique = false) {
./wp-includes/comment.php:function delete_comment_meta($comment_id, $meta_key, $meta_value = '') {
./wp-includes/comment.php:function get_comment_meta($comment_id, $key = '', $single = false) {
./wp-includes/comment.php:function update_comment_meta($comment_id, $meta_key, $meta_value, $prev_value = '') {
./wp-includes/comment.php:function wp_set_comment_cookies($comment, $user) {
./wp-includes/comment.php:function sanitize_comment_cookies() {
./wp-includes/comment.php:function wp_allow_comment($commentdata) {
./wp-includes/comment.php:function check_comment_flood_db( $ip, $email, $date ) {
./wp-includes/comment.php:function separate_comments(&$comments) {
./wp-includes/comment.php:function get_comment_pages_count( $comments = null, $per_page = null, $threaded = null ) {
./wp-includes/comment.php:function get_page_of_comment( $comment_ID, $args = array() ) {
./wp-includes/comment.php:function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_agent) {
./wp-includes/comment.php:function wp_count_comments( $post_id = 0 ) {
./wp-includes/comment.php:function wp_delete_comment($comment_id, $force_delete = false) {
./wp-includes/comment.php:function wp_trash_comment($comment_id) {
./wp-includes/comment.php:function wp_untrash_comment($comment_id) {
./wp-includes/comment.php:function wp_spam_comment($comment_id) {
./wp-includes/comment.php:function wp_unspam_comment($comment_id) {
./wp-includes/comment.php:function wp_get_comment_status($comment_id) {
./wp-includes/comment.php:function wp_transition_comment_status($new_status, $old_status, $comment) {
./wp-includes/comment.php:function wp_get_current_commenter() {
./wp-includes/comment.php:function wp_insert_comment($commentdata) {
./wp-includes/comment.php:function wp_filter_comment($commentdata) {
./wp-includes/comment.php:function wp_throttle_comment_flood($block, $time_lastcomment, $time_newcomment) {
./wp-includes/comment.php:function wp_new_comment( $commentdata ) {
./wp-includes/comment.php:function wp_set_comment_status($comment_id, $comment_status, $wp_error = false) {
./wp-includes/comment.php:function wp_update_comment($commentarr) {
./wp-includes/comment.php:function wp_defer_comment_counting($defer=null) {
./wp-includes/comment.php:function wp_update_comment_count($post_id, $do_deferred=false) {
./wp-includes/comment.php:function wp_update_comment_count_now($post_id) {
./wp-includes/comment.php:function discover_pingback_server_uri( $url, $deprecated = '' ) {
./wp-includes/comment.php:function do_all_pings() {
./wp-includes/comment.php:function do_trackbacks($post_id) {
./wp-includes/comment.php:function generic_ping($post_id = 0) {
./wp-includes/comment.php:function pingback($content, $post_ID) {
./wp-includes/comment.php:function privacy_ping_filter($sites) {
./wp-includes/comment.php:function trackback($trackback_url, $title, $excerpt, $ID) {
./wp-includes/comment.php:function weblog_ping($server = '', $path = '') {
./wp-includes/comment.php:function pingback_ping_source_uri( $source_uri ) {
./wp-includes/comment.php:function xmlrpc_pingback_error( $ixr_error ) {
./wp-includes/comment.php:function clean_comment_cache($ids) {
./wp-includes/comment.php:function update_comment_cache($comments) {
./wp-includes/comment.php:function _close_comments_for_old_posts( $posts, $query ) {
./wp-includes/comment.php:function _close_comments_for_old_post( $open, $post_id ) {
./wp-includes/compat.php:function _mb_substr( $str, $start, $length=null, $encoding=null ) {
./wp-includes/compat.php:function hash_hmac($algo, $data, $key, $raw_output = false) {
./wp-includes/compat.php:function _hash_hmac($algo, $data, $key, $raw_output = false) {
./wp-includes/compat.php:function hash_equals( $a, $b ) {
./wp-includes/cron.php:function wp_schedule_single_event( $timestamp, $hook, $args = array()) {
./wp-includes/cron.php:function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array()) {
./wp-includes/cron.php:function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array()) {
./wp-includes/cron.php:function wp_unschedule_event( $timestamp, $hook, $args = array() ) {
./wp-includes/cron.php:function wp_clear_scheduled_hook( $hook, $args = array() ) {
./wp-includes/cron.php:function wp_next_scheduled( $hook, $args = array() ) {
./wp-includes/cron.php:function spawn_cron( $gmt_time = 0 ) {
./wp-includes/cron.php:function wp_cron() {
./wp-includes/cron.php:function wp_get_schedules() {
./wp-includes/cron.php:function wp_get_schedule($hook, $args = array()) {
./wp-includes/cron.php:function _get_cron_array() {
./wp-includes/cron.php:function _set_cron_array($cron) {
./wp-includes/cron.php:function _upgrade_cron_array($cron) {
./wp-includes/default-constants.php:function wp_initial_constants() {
./wp-includes/default-constants.php:function wp_plugin_directory_constants() {
./wp-includes/default-constants.php:function wp_cookie_constants() {
./wp-includes/default-constants.php:function wp_ssl_constants() {
./wp-includes/default-constants.php:function wp_functionality_constants() {
./wp-includes/default-constants.php:function wp_templating_constants() {
./wp-includes/default-widgets.php:function wp_widget_rss_output( $rss, $args = array() ) {
./wp-includes/default-widgets.php:function wp_widget_rss_form( $args, $inputs = null ) {
./wp-includes/default-widgets.php:function wp_widget_rss_process( $widget_rss, $check_feed = true ) {
./wp-includes/default-widgets.php:function wp_widgets_init() {
./wp-includes/deprecated.php:function get_postdata($postid) {
./wp-includes/deprecated.php:function start_wp() {
./wp-includes/deprecated.php:function the_category_ID($echo = true) {
./wp-includes/deprecated.php:function the_category_head($before='', $after='') {
./wp-includes/deprecated.php:function previous_post($format='%', $previous='previous post: ', $title='yes', $in_same_cat='no', $limitprev=1, $excluded_categories='') {
./wp-includes/deprecated.php:function next_post($format='%', $next='next post: ', $title='yes', $in_same_cat='no', $limitnext=1, $excluded_categories='') {
./wp-includes/deprecated.php:function user_can_create_post($user_id, $blog_id = 1, $category_id = 'None') {
./wp-includes/deprecated.php:function user_can_create_draft($user_id, $blog_id = 1, $category_id = 'None') {
./wp-includes/deprecated.php:function user_can_edit_post($user_id, $post_id, $blog_id = 1) {
./wp-includes/deprecated.php:function user_can_delete_post($user_id, $post_id, $blog_id = 1) {
./wp-includes/deprecated.php:function user_can_set_post_date($user_id, $blog_id = 1, $category_id = 'None') {
./wp-includes/deprecated.php:function user_can_edit_post_date($user_id, $post_id, $blog_id = 1) {
./wp-includes/deprecated.php:function user_can_edit_post_comments($user_id, $post_id, $blog_id = 1) {
./wp-includes/deprecated.php:function user_can_delete_post_comments($user_id, $post_id, $blog_id = 1) {
./wp-includes/deprecated.php:function user_can_edit_user($user_id, $other_user) {
./wp-includes/deprecated.php:function get_linksbyname($cat_name = "noname", $before = '', $after = '<br />', $between = " ", $show_images = true, $orderby = 'id',
./wp-includes/deprecated.php:function wp_get_linksbyname($category, $args = '') {
./wp-includes/deprecated.php:function get_linkobjectsbyname($cat_name = "noname" , $orderby = 'name', $limit = -1) {
./wp-includes/deprecated.php:function get_linkobjects($category = 0, $orderby = 'name', $limit = 0) {
./wp-includes/deprecated.php:function get_linksbyname_withrating($cat_name = "noname", $before = '', $after = '<br />', $between = " ",
./wp-includes/deprecated.php:function get_links_withrating($category = -1, $before = '', $after = '<br />', $between = " ", $show_images = true,
./wp-includes/deprecated.php:function get_autotoggle($id = 0) {
./wp-includes/deprecated.php:function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0,
./wp-includes/deprecated.php:function wp_list_cats($args = '') {
./wp-includes/deprecated.php:function dropdown_cats($optionall = 1, $all = 'All', $orderby = 'ID', $order = 'asc',
./wp-includes/deprecated.php:function list_authors($optioncount = false, $exclude_admin = true, $show_fullname = false, $hide_empty = true, $feed = '', $feed_image = '') {
./wp-includes/deprecated.php:function wp_get_post_cats($blogid = '1', $post_ID = 0) {
./wp-includes/deprecated.php:function wp_set_post_cats($blogid = '1', $post_ID = 0, $post_categories = array()) {
./wp-includes/deprecated.php:function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {
./wp-includes/deprecated.php:function get_author_link($echo, $author_id, $author_nicename = '') {
./wp-includes/deprecated.php:function link_pages($before='<br />', $after='<br />', $next_or_number='number', $nextpagelink='next page', $previouspagelink='previous page',
./wp-includes/deprecated.php:function get_settings($option) {
./wp-includes/deprecated.php:function permalink_link() {
./wp-includes/deprecated.php:function permalink_single_rss($deprecated = '') {
./wp-includes/deprecated.php:function wp_get_links($args = '') {
./wp-includes/deprecated.php:function get_links($category = -1, $before = '', $after = '<br />', $between = ' ', $show_images = true, $orderby = 'name',
./wp-includes/deprecated.php:function get_links_list($order = 'name') {
./wp-includes/deprecated.php:function links_popup_script($text = 'Links', $width=400, $height=400, $file='links.all.php', $count = true) {
./wp-includes/deprecated.php:function get_linkrating($link) {
./wp-includes/deprecated.php:function get_linkcatname($id = 0) {
./wp-includes/deprecated.php:function comments_rss_link($link_text = 'Comments RSS') {
./wp-includes/deprecated.php:function get_category_rss_link($echo = false, $cat_ID = 1) {
./wp-includes/deprecated.php:function get_author_rss_link($echo = false, $author_id = 1) {
./wp-includes/deprecated.php:function comments_rss() {
./wp-includes/deprecated.php:function create_user($username, $password, $email) {
./wp-includes/deprecated.php:function gzip_compression() {
./wp-includes/deprecated.php:function get_commentdata( $comment_ID, $no_cache = 0, $include_unapproved = false ) {
./wp-includes/deprecated.php:function get_catname( $cat_ID ) {
./wp-includes/deprecated.php:function get_category_children( $id, $before = '/', $after = '', $visited = array() ) {
./wp-includes/deprecated.php:function get_the_author_description() {
./wp-includes/deprecated.php:function the_author_description() {
./wp-includes/deprecated.php:function get_the_author_login() {
./wp-includes/deprecated.php:function the_author_login() {
./wp-includes/deprecated.php:function get_the_author_firstname() {
./wp-includes/deprecated.php:function the_author_firstname() {
./wp-includes/deprecated.php:function get_the_author_lastname() {
./wp-includes/deprecated.php:function the_author_lastname() {
./wp-includes/deprecated.php:function get_the_author_nickname() {
./wp-includes/deprecated.php:function the_author_nickname() {
./wp-includes/deprecated.php:function get_the_author_email() {
./wp-includes/deprecated.php:function the_author_email() {
./wp-includes/deprecated.php:function get_the_author_icq() {
./wp-includes/deprecated.php:function the_author_icq() {
./wp-includes/deprecated.php:function get_the_author_yim() {
./wp-includes/deprecated.php:function the_author_yim() {
./wp-includes/deprecated.php:function get_the_author_msn() {
./wp-includes/deprecated.php:function the_author_msn() {
./wp-includes/deprecated.php:function get_the_author_aim() {
./wp-includes/deprecated.php:function the_author_aim() {
./wp-includes/deprecated.php:function get_author_name( $auth_id = false ) {
./wp-includes/deprecated.php:function get_the_author_url() {
./wp-includes/deprecated.php:function the_author_url() {
./wp-includes/deprecated.php:function get_the_author_ID() {
./wp-includes/deprecated.php:function the_author_ID() {
./wp-includes/deprecated.php:function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) {
./wp-includes/deprecated.php:function make_url_footnote( $content ) {
./wp-includes/deprecated.php:function _c( $text, $domain = 'default' ) {
./wp-includes/deprecated.php:function translate_with_context( $text, $domain = 'default' ) {
./wp-includes/deprecated.php:function _nc( $single, $plural, $number, $domain = 'default' ) {
./wp-includes/deprecated.php:function __ngettext() {
./wp-includes/deprecated.php:function __ngettext_noop() {
./wp-includes/deprecated.php:function get_alloptions() {
./wp-includes/deprecated.php:function get_the_attachment_link($id = 0, $fullsize = false, $max_dims = false, $permalink = false) {
./wp-includes/deprecated.php:function get_attachment_icon_src( $id = 0, $fullsize = false ) {
./wp-includes/deprecated.php:function get_attachment_icon( $id = 0, $fullsize = false, $max_dims = false ) {
./wp-includes/deprecated.php:function get_attachment_innerHTML($id = 0, $fullsize = false, $max_dims = false) {
./wp-includes/deprecated.php:function get_link($bookmark_id, $output = OBJECT, $filter = 'raw') {
./wp-includes/deprecated.php:function sanitize_url( $url, $protocols = null ) {
./wp-includes/deprecated.php:function clean_url( $url, $protocols = null, $context = 'display' ) {
./wp-includes/deprecated.php:function js_escape( $text ) {
./wp-includes/deprecated.php:function wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
./wp-includes/deprecated.php:function attribute_escape( $text ) {
./wp-includes/deprecated.php:function register_sidebar_widget($name, $output_callback, $classname = '') {
./wp-includes/deprecated.php:function unregister_sidebar_widget($id) {
./wp-includes/deprecated.php:function register_widget_control($name, $control_callback, $width = '', $height = '') {
./wp-includes/deprecated.php:function unregister_widget_control($id) {
./wp-includes/deprecated.php:function delete_usermeta( $user_id, $meta_key, $meta_value = '' ) {
./wp-includes/deprecated.php:function get_usermeta( $user_id, $meta_key = '' ) {
./wp-includes/deprecated.php:function update_usermeta( $user_id, $meta_key, $meta_value ) {
./wp-includes/deprecated.php:function get_users_of_blog( $id = '' ) {
./wp-includes/deprecated.php:function automatic_feed_links( $add = true ) {
./wp-includes/deprecated.php:function get_profile( $field, $user = false ) {
./wp-includes/deprecated.php:function get_usernumposts( $userid ) {
./wp-includes/deprecated.php:function funky_javascript_callback($matches) {
./wp-includes/deprecated.php:function funky_javascript_fix($text) {
./wp-includes/deprecated.php:function is_taxonomy( $taxonomy ) {
./wp-includes/deprecated.php:function is_term( $term, $taxonomy = '', $parent = 0 ) {
./wp-includes/deprecated.php:function is_plugin_page() {
./wp-includes/deprecated.php:function update_category_cache() {
./wp-includes/deprecated.php:function wp_timezone_supported() {
./wp-includes/deprecated.php:function the_editor($content, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2, $extended = true) {
./wp-includes/deprecated.php:function get_user_metavalues($ids) {
./wp-includes/deprecated.php:function sanitize_user_object($user, $context = 'display') {
./wp-includes/deprecated.php:function get_boundary_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '', $start = true) {
./wp-includes/deprecated.php:function start_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '') {
./wp-includes/deprecated.php:function get_index_rel_link() {
./wp-includes/deprecated.php:function index_rel_link() {
./wp-includes/deprecated.php:function get_parent_post_rel_link($title = '%title') {
./wp-includes/deprecated.php:function parent_post_rel_link($title = '%title') {
./wp-includes/deprecated.php:function wp_admin_bar_dashboard_view_site_menu( $wp_admin_bar ) {
./wp-includes/deprecated.php:function is_blog_user( $blog_id = 0 ) {
./wp-includes/deprecated.php:function debug_fopen( $filename, $mode ) {
./wp-includes/deprecated.php:function debug_fwrite( $fp, $string ) {
./wp-includes/deprecated.php:function debug_fclose( $fp ) {
./wp-includes/deprecated.php:function get_themes() {
./wp-includes/deprecated.php:function get_theme( $theme ) {
./wp-includes/deprecated.php:function get_current_theme() {
./wp-includes/deprecated.php:function clean_pre($matches) {
./wp-includes/deprecated.php:function add_custom_image_header( $wp_head_callback, $admin_head_callback, $admin_preview_callback = '' ) {
./wp-includes/deprecated.php:function remove_custom_image_header() {
./wp-includes/deprecated.php:function add_custom_background( $wp_head_callback = '', $admin_head_callback = '', $admin_preview_callback = '' ) {
./wp-includes/deprecated.php:function remove_custom_background() {
./wp-includes/deprecated.php:function get_theme_data( $theme_file ) {
./wp-includes/deprecated.php:function update_page_cache( &$pages ) {
./wp-includes/deprecated.php:function clean_page_cache( $id ) {
./wp-includes/deprecated.php:function wp_explain_nonce( $action ) {
./wp-includes/deprecated.php:function sticky_class( $post_id = null ) {
./wp-includes/deprecated.php:function _get_post_ancestors( &$post ) {
./wp-includes/deprecated.php:function wp_load_image( $file ) {
./wp-includes/deprecated.php:function image_resize( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 ) {
./wp-includes/deprecated.php:function wp_get_single_post( $postid = 0, $mode = OBJECT ) {
./wp-includes/deprecated.php:function user_pass_ok($user_login, $user_pass) {
./wp-includes/deprecated.php:function _save_post_hook() {}
./wp-includes/deprecated.php:function gd_edit_image_support($mime_type) {
./wp-includes/deprecated.php:function wp_convert_bytes_to_hr( $bytes ) {
./wp-includes/deprecated.php:function _search_terms_tidy( $t ) {
./wp-includes/deprecated.php:function rich_edit_exists() {
./wp-includes/deprecated.php:function default_topic_count_text( $count ) {
./wp-includes/deprecated.php:function format_to_post( $content ) {
./wp-includes/feed.php:function get_bloginfo_rss($show = '') {
./wp-includes/feed.php:function bloginfo_rss($show = '') {
./wp-includes/feed.php:function get_default_feed() {
./wp-includes/feed.php:function get_wp_title_rss($sep = '&#187;') {
./wp-includes/feed.php:function wp_title_rss( $sep = '&#187;' ) {
./wp-includes/feed.php:function get_the_title_rss() {
./wp-includes/feed.php:function the_title_rss() {
./wp-includes/feed.php:function get_the_content_feed($feed_type = null) {
./wp-includes/feed.php:function the_content_feed($feed_type = null) {
./wp-includes/feed.php:function the_excerpt_rss() {
./wp-includes/feed.php:function the_permalink_rss() {
./wp-includes/feed.php:function comments_link_feed() {
./wp-includes/feed.php:function comment_guid($comment_id = null) {
./wp-includes/feed.php:function get_comment_guid($comment_id = null) {
./wp-includes/feed.php:function comment_link() {
./wp-includes/feed.php:function get_comment_author_rss() {
./wp-includes/feed.php:function comment_author_rss() {
./wp-includes/feed.php:function comment_text_rss() {
./wp-includes/feed.php:function get_the_category_rss($type = null) {
./wp-includes/feed.php:function the_category_rss($type = null) {
./wp-includes/feed.php:function html_type_rss() {
./wp-includes/feed.php:function rss_enclosure() {
./wp-includes/feed.php:function atom_enclosure() {
./wp-includes/feed.php:function prep_atom_text_construct($data) {
./wp-includes/feed.php:function self_link() {
./wp-includes/feed.php:function feed_content_type( $type = '' ) {
./wp-includes/feed.php:function fetch_feed( $url ) {
./wp-includes/formatting.php:function wptexturize($text) {
./wp-includes/formatting.php:function _wptexturize_pushpop_element($text, &$stack, $disabled_elements, $opening = '<', $closing = '>') {
./wp-includes/formatting.php:function wpautop($pee, $br = true) {
./wp-includes/formatting.php:function _autop_newline_preservation_helper( $matches ) {
./wp-includes/formatting.php:function shortcode_unautop( $pee ) {
./wp-includes/formatting.php:function seems_utf8($str) {
./wp-includes/formatting.php:function _wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
./wp-includes/formatting.php:function wp_specialchars_decode( $string, $quote_style = ENT_NOQUOTES ) {
./wp-includes/formatting.php:function wp_check_invalid_utf8( $string, $strip = false ) {
./wp-includes/formatting.php:function utf8_uri_encode( $utf8_string, $length = 0 ) {
./wp-includes/formatting.php:function remove_accents($string) {
./wp-includes/formatting.php:function sanitize_file_name( $filename ) {
./wp-includes/formatting.php:function sanitize_user( $username, $strict = false ) {
./wp-includes/formatting.php:function sanitize_key( $key ) {
./wp-includes/formatting.php:function sanitize_title( $title, $fallback_title = '', $context = 'save' ) {
./wp-includes/formatting.php:function sanitize_title_for_query( $title ) {
./wp-includes/formatting.php:function sanitize_title_with_dashes( $title, $raw_title = '', $context = 'display' ) {
./wp-includes/formatting.php:function sanitize_sql_orderby( $orderby ){
./wp-includes/formatting.php:function sanitize_html_class( $class, $fallback = '' ) {
./wp-includes/formatting.php:function convert_chars($content, $deprecated = '') {
./wp-includes/formatting.php:function balanceTags( $text, $force = false ) {
./wp-includes/formatting.php:function force_balance_tags( $text ) {
./wp-includes/formatting.php:function format_to_edit( $content, $richedit = false ) {
./wp-includes/formatting.php:function zeroise($number, $threshold) {
./wp-includes/formatting.php:function backslashit($string) {
./wp-includes/formatting.php:function trailingslashit( $string ) {
./wp-includes/formatting.php:function untrailingslashit( $string ) {
./wp-includes/formatting.php:function addslashes_gpc($gpc) {
./wp-includes/formatting.php:function stripslashes_deep($value) {
./wp-includes/formatting.php:function urlencode_deep($value) {
./wp-includes/formatting.php:function rawurlencode_deep( $value ) {
./wp-includes/formatting.php:function antispambot( $email_address, $hex_encoding = 0 ) {
./wp-includes/formatting.php:function _make_url_clickable_cb($matches) {
./wp-includes/formatting.php:function _make_web_ftp_clickable_cb($matches) {
./wp-includes/formatting.php:function _make_email_clickable_cb($matches) {
./wp-includes/formatting.php:function make_clickable( $text ) {
./wp-includes/formatting.php:function _split_str_by_whitespace( $string, $goal ) {
./wp-includes/formatting.php:function wp_rel_nofollow( $text ) {
./wp-includes/formatting.php:function wp_rel_nofollow_callback( $matches ) {
./wp-includes/formatting.php:function translate_smiley( $matches ) {
./wp-includes/formatting.php:function convert_smilies( $text ) {
./wp-includes/formatting.php:function is_email( $email, $deprecated = false ) {
./wp-includes/formatting.php:function wp_iso_descrambler($string) {
./wp-includes/formatting.php:function _wp_iso_convert( $match ) {
./wp-includes/formatting.php:function get_gmt_from_date( $string, $format = 'Y-m-d H:i:s' ) {
./wp-includes/formatting.php:function get_date_from_gmt( $string, $format = 'Y-m-d H:i:s' ) {
./wp-includes/formatting.php:function iso8601_timezone_to_offset($timezone) {
./wp-includes/formatting.php:function iso8601_to_datetime($date_string, $timezone = 'user') {
./wp-includes/formatting.php:function popuplinks($text) {
./wp-includes/formatting.php:function sanitize_email( $email ) {
./wp-includes/formatting.php:function human_time_diff( $from, $to = '' ) {
./wp-includes/formatting.php:function wp_trim_excerpt($text = '') {
./wp-includes/formatting.php:function wp_trim_words( $text, $num_words = 55, $more = null ) {
./wp-includes/formatting.php:function ent2ncr($text) {
./wp-includes/formatting.php:function wp_richedit_pre($text) {
./wp-includes/formatting.php:function wp_htmledit_pre($output) {
./wp-includes/formatting.php:function _deep_replace( $search, $subject ) {
./wp-includes/formatting.php:function esc_sql( $data ) {
./wp-includes/formatting.php:function esc_url( $url, $protocols = null, $_context = 'display' ) {
./wp-includes/formatting.php:function esc_url_raw( $url, $protocols = null ) {
./wp-includes/formatting.php:function htmlentities2($myHTML) {
./wp-includes/formatting.php:function esc_js( $text ) {
./wp-includes/formatting.php:function esc_html( $text ) {
./wp-includes/formatting.php:function esc_attr( $text ) {
./wp-includes/formatting.php:function esc_textarea( $text ) {
./wp-includes/formatting.php:function tag_escape($tag_name) {
./wp-includes/formatting.php:function like_escape($text) {
./wp-includes/formatting.php:function wp_make_link_relative( $link ) {
./wp-includes/formatting.php:function sanitize_option($option, $value) {
./wp-includes/formatting.php:function wp_parse_str( $string, &$array ) {
./wp-includes/formatting.php:function wp_pre_kses_less_than( $text ) {
./wp-includes/formatting.php:function wp_pre_kses_less_than_callback( $matches ) {
./wp-includes/formatting.php:function wp_sprintf( $pattern ) {
./wp-includes/formatting.php:function wp_sprintf_l($pattern, $args) {
./wp-includes/formatting.php:function wp_html_excerpt( $str, $count, $more = null ) {
./wp-includes/formatting.php:function links_add_base_url( $content, $base, $attrs = array('src', 'href') ) {
./wp-includes/formatting.php:function _links_add_base($m) {
./wp-includes/formatting.php:function links_add_target( $content, $target = '_blank', $tags = array('a') ) {
./wp-includes/formatting.php:function _links_add_target( $m ) {
./wp-includes/formatting.php:function normalize_whitespace( $str ) {
./wp-includes/formatting.php:function wp_strip_all_tags($string, $remove_breaks = false) {
./wp-includes/formatting.php:function sanitize_text_field($str) {
./wp-includes/formatting.php:function wp_basename( $path, $suffix = '' ) {
./wp-includes/formatting.php:function capital_P_dangit( $text ) {
./wp-includes/formatting.php:function sanitize_mime_type( $mime_type ) {
./wp-includes/formatting.php:function sanitize_trackback_urls( $to_ping ) {
./wp-includes/formatting.php:function wp_slash( $value ) {
./wp-includes/formatting.php:function wp_unslash( $value ) {
./wp-includes/formatting.php:function get_url_in_content( $content ) {
./wp-includes/functions.php:function mysql2date( $format, $date, $translate = true ) {
./wp-includes/functions.php:function current_time( $type, $gmt = 0 ) {
./wp-includes/functions.php:function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
./wp-includes/functions.php:function number_format_i18n( $number, $decimals = 0 ) {
./wp-includes/functions.php:function size_format( $bytes, $decimals = 0 ) {
./wp-includes/functions.php:function get_weekstartend( $mysqlstring, $start_of_week = '' ) {
./wp-includes/functions.php:function maybe_unserialize( $original ) {
./wp-includes/functions.php:function is_serialized( $data, $strict = true ) {
./wp-includes/functions.php:function is_serialized_string( $data ) {
./wp-includes/functions.php:function maybe_serialize( $data ) {
./wp-includes/functions.php:function xmlrpc_getposttitle( $content ) {
./wp-includes/functions.php:function xmlrpc_getpostcategory( $content ) {
./wp-includes/functions.php:function xmlrpc_removepostdata( $content ) {
./wp-includes/functions.php:function wp_extract_urls( $content ) {
./wp-includes/functions.php:function do_enclose( $content, $post_ID ) {
./wp-includes/functions.php:function wp_get_http( $url, $file_path = false, $red = 1 ) {
./wp-includes/functions.php:function wp_get_http_headers( $url, $deprecated = false ) {
./wp-includes/functions.php:function is_new_day() {
./wp-includes/functions.php:function build_query( $data ) {
./wp-includes/functions.php:function _http_build_query($data, $prefix=null, $sep=null, $key='', $urlencode=true) {
./wp-includes/functions.php:function add_query_arg() {
./wp-includes/functions.php:function remove_query_arg( $key, $query=false ) {
./wp-includes/functions.php:function add_magic_quotes( $array ) {
./wp-includes/functions.php:function wp_remote_fopen( $uri ) {
./wp-includes/functions.php:function wp( $query_vars = '' ) {
./wp-includes/functions.php:function get_status_header_desc( $code ) {
./wp-includes/functions.php:function status_header( $code ) {
./wp-includes/functions.php:function wp_get_nocache_headers() {
./wp-includes/functions.php:function nocache_headers() {
./wp-includes/functions.php:function cache_javascript_headers() {
./wp-includes/functions.php:function get_num_queries() {
./wp-includes/functions.php:function bool_from_yn( $yn ) {
./wp-includes/functions.php:function do_feed() {
./wp-includes/functions.php:function do_feed_rdf() {
./wp-includes/functions.php:function do_feed_rss() {
./wp-includes/functions.php:function do_feed_rss2( $for_comments ) {
./wp-includes/functions.php:function do_feed_atom( $for_comments ) {
./wp-includes/functions.php:function do_robots() {
./wp-includes/functions.php:function is_blog_installed() {
./wp-includes/functions.php:function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
./wp-includes/functions.php:function wp_nonce_field( $action = -1, $name = "_wpnonce", $referer = true , $echo = true ) {
./wp-includes/functions.php:function wp_referer_field( $echo = true ) {
./wp-includes/functions.php:function wp_original_referer_field( $echo = true, $jump_back_to = 'current' ) {
./wp-includes/functions.php:function wp_get_referer() {
./wp-includes/functions.php:function wp_get_original_referer() {
./wp-includes/functions.php:function wp_mkdir_p( $target ) {
./wp-includes/functions.php:function path_is_absolute( $path ) {
./wp-includes/functions.php:function path_join( $base, $path ) {
./wp-includes/functions.php:function wp_normalize_path( $path ) {
./wp-includes/functions.php:function get_temp_dir() {
./wp-includes/functions.php:function wp_is_writable( $path ) {
./wp-includes/functions.php:function win_is_writable( $path ) {
./wp-includes/functions.php:function wp_upload_dir( $time = null ) {
./wp-includes/functions.php:function wp_unique_filename( $dir, $filename, $unique_filename_callback = null ) {
./wp-includes/functions.php:function wp_upload_bits( $name, $deprecated, $bits, $time = null ) {
./wp-includes/functions.php:function wp_ext2type( $ext ) {
./wp-includes/functions.php:function wp_check_filetype( $filename, $mimes = null ) {
./wp-includes/functions.php:function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
./wp-includes/functions.php:function wp_get_mime_types() {
./wp-includes/functions.php:function get_allowed_mime_types( $user = null ) {
./wp-includes/functions.php:function wp_nonce_ays( $action ) {
./wp-includes/functions.php:function wp_die( $message = '', $title = '', $args = array() ) {
./wp-includes/functions.php:function _default_wp_die_handler( $message, $title = '', $args = array() ) {
./wp-includes/functions.php:function _xmlrpc_wp_die_handler( $message, $title = '', $args = array() ) {
./wp-includes/functions.php:function _ajax_wp_die_handler( $message = '' ) {
./wp-includes/functions.php:function _scalar_wp_die_handler( $message = '' ) {
./wp-includes/functions.php:function wp_send_json( $response ) {
./wp-includes/functions.php:function wp_send_json_success( $data = null ) {
./wp-includes/functions.php:function wp_send_json_error( $data = null ) {
./wp-includes/functions.php:function _config_wp_home( $url = '' ) {
./wp-includes/functions.php:function _config_wp_siteurl( $url = '' ) {
./wp-includes/functions.php:function _mce_set_direction( $input ) {
./wp-includes/functions.php:function smilies_init() {
./wp-includes/functions.php:function wp_parse_args( $args, $defaults = '' ) {
./wp-includes/functions.php:function wp_parse_id_list( $list ) {
./wp-includes/functions.php:function wp_array_slice_assoc( $array, $keys ) {
./wp-includes/functions.php:function wp_filter_object_list( $list, $args = array(), $operator = 'and', $field = false ) {
./wp-includes/functions.php:function wp_list_filter( $list, $args = array(), $operator = 'AND' ) {
./wp-includes/functions.php:function wp_list_pluck( $list, $field ) {
./wp-includes/functions.php:function wp_maybe_load_widgets() {
./wp-includes/functions.php:function wp_widgets_add_menu() {
./wp-includes/functions.php:function wp_ob_end_flush_all() {
./wp-includes/functions.php:function dead_db() {
./wp-includes/functions.php:function absint( $maybeint ) {
./wp-includes/functions.php:function url_is_accessable_via_ssl($url)
./wp-includes/functions.php:function _deprecated_function( $function, $version, $replacement = null ) {
./wp-includes/functions.php:function _deprecated_file( $file, $version, $replacement = null, $message = '' ) {
./wp-includes/functions.php:function _deprecated_argument( $function, $version, $message = null ) {
./wp-includes/functions.php:function _doing_it_wrong( $function, $message, $version ) {
./wp-includes/functions.php:function is_lighttpd_before_150() {
./wp-includes/functions.php:function apache_mod_loaded($mod, $default = false) {
./wp-includes/functions.php:function iis7_supports_permalinks() {
./wp-includes/functions.php:function validate_file( $file, $allowed_files = '' ) {
./wp-includes/functions.php:function is_ssl() {
./wp-includes/functions.php:function force_ssl_login( $force = null ) {
./wp-includes/functions.php:function force_ssl_admin( $force = null ) {
./wp-includes/functions.php:function wp_guess_url() {
./wp-includes/functions.php:function wp_suspend_cache_addition( $suspend = null ) {
./wp-includes/functions.php:function wp_suspend_cache_invalidation($suspend = true) {
./wp-includes/functions.php:function is_main_site( $site_id = null ) {
./wp-includes/functions.php:function is_main_network( $network_id = null ) {
./wp-includes/functions.php:function global_terms_enabled() {
./wp-includes/functions.php:function wp_timezone_override_offset() {
./wp-includes/functions.php:function _wp_timezone_choice_usort_callback( $a, $b ) {
./wp-includes/functions.php:function wp_timezone_choice( $selected_zone ) {
./wp-includes/functions.php:function _cleanup_header_comment($str) {
./wp-includes/functions.php:function wp_scheduled_delete() {
./wp-includes/functions.php:function get_file_data( $file, $default_headers, $context = '' ) {
./wp-includes/functions.php:function __return_true() {
./wp-includes/functions.php:function __return_false() {
./wp-includes/functions.php:function __return_zero() {
./wp-includes/functions.php:function __return_empty_array() {
./wp-includes/functions.php:function __return_null() {
./wp-includes/functions.php:function __return_empty_string() {
./wp-includes/functions.php:function send_nosniff_header() {
./wp-includes/functions.php:function _wp_mysql_week( $column ) {
./wp-includes/functions.php:function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_args = array() ) {
./wp-includes/functions.php:function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = array(), $callback_args = array(), $_return_loop = false ) {
./wp-includes/functions.php:function send_frame_options_header() {
./wp-includes/functions.php:function wp_allowed_protocols() {
./wp-includes/functions.php:function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) {
./wp-includes/functions.php:function _get_non_cached_ids( $object_ids, $cache_key ) {
./wp-includes/functions.php:function _device_can_upload() {
./wp-includes/functions.php:function wp_is_stream( $path ) {
./wp-includes/functions.php:function wp_checkdate( $month, $day, $year, $source_date ) {
./wp-includes/functions.php:function wp_auth_check_load() {
./wp-includes/functions.php:function wp_auth_check_html() {
./wp-includes/functions.php:function wp_auth_check( $response ) {
./wp-includes/functions.php:function get_tag_regex( $tag ) {
./wp-includes/functions.php:function _canonical_charset( $charset ) {
./wp-includes/functions.php:function mbstring_binary_safe_encoding( $reset = false ) {
./wp-includes/functions.php:function reset_mbstring_encoding() {
./wp-includes/functions.wp-scripts.php:function wp_print_scripts( $handles = false ) {
./wp-includes/functions.wp-scripts.php:function wp_register_script( $handle, $src, $deps = array(), $ver = false, $in_footer = false ) {
./wp-includes/functions.wp-scripts.php:function wp_localize_script( $handle, $object_name, $l10n ) {
./wp-includes/functions.wp-scripts.php:function wp_deregister_script( $handle ) {
./wp-includes/functions.wp-scripts.php:function wp_enqueue_script( $handle, $src = false, $deps = array(), $ver = false, $in_footer = false ) {
./wp-includes/functions.wp-scripts.php:function wp_dequeue_script( $handle ) {
./wp-includes/functions.wp-scripts.php:function wp_script_is( $handle, $list = 'enqueued' ) {
./wp-includes/functions.wp-styles.php:function wp_print_styles( $handles = false ) {
./wp-includes/functions.wp-styles.php:function wp_add_inline_style( $handle, $data ) {
./wp-includes/functions.wp-styles.php:function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
./wp-includes/functions.wp-styles.php:function wp_deregister_style( $handle ) {
./wp-includes/functions.wp-styles.php:function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = 'all' ) {
./wp-includes/functions.wp-styles.php:function wp_dequeue_style( $handle ) {
./wp-includes/functions.wp-styles.php:function wp_style_is( $handle, $list = 'enqueued' ) {
./wp-includes/functions.wp-styles.php:function wp_style_add_data( $handle, $key, $value ) {
./wp-includes/general-template.php:function get_header( $name = null ) {
./wp-includes/general-template.php:function get_footer( $name = null ) {
./wp-includes/general-template.php:function get_sidebar( $name = null ) {
./wp-includes/general-template.php:function get_template_part( $slug, $name = null ) {
./wp-includes/general-template.php:function get_search_form( $echo = true ) {
./wp-includes/general-template.php:function wp_loginout($redirect = '', $echo = true) {
./wp-includes/general-template.php:function wp_logout_url($redirect = '') {
./wp-includes/general-template.php:function wp_login_url($redirect = '', $force_reauth = false) {
./wp-includes/general-template.php:function wp_registration_url() {
./wp-includes/general-template.php:function wp_login_form( $args = array() ) {
./wp-includes/general-template.php:function wp_lostpassword_url( $redirect = '' ) {
./wp-includes/general-template.php:function wp_register( $before = '<li>', $after = '</li>', $echo = true ) {
./wp-includes/general-template.php:function wp_meta() {
./wp-includes/general-template.php:function bloginfo( $show='' ) {
./wp-includes/general-template.php:function get_bloginfo( $show = '', $filter = 'raw' ) {
./wp-includes/general-template.php:function wp_title($sep = '&raquo;', $display = true, $seplocation = '') {
./wp-includes/general-template.php:function single_post_title($prefix = '', $display = true) {
./wp-includes/general-template.php:function post_type_archive_title( $prefix = '', $display = true ) {
./wp-includes/general-template.php:function single_cat_title( $prefix = '', $display = true ) {
./wp-includes/general-template.php:function single_tag_title( $prefix = '', $display = true ) {
./wp-includes/general-template.php:function single_term_title( $prefix = '', $display = true ) {
./wp-includes/general-template.php:function single_month_title($prefix = '', $display = true ) {
./wp-includes/general-template.php:function get_archives_link($url, $text, $format = 'html', $before = '', $after = '') {
./wp-includes/general-template.php:function wp_get_archives($args = '') {
./wp-includes/general-template.php:function calendar_week_mod($num) {
./wp-includes/general-template.php:function get_calendar($initial = true, $echo = true) {
./wp-includes/general-template.php:function delete_get_calendar_cache() {
./wp-includes/general-template.php:function allowed_tags() {
./wp-includes/general-template.php:function the_date_xml() {
./wp-includes/general-template.php:function the_date( $d = '', $before = '', $after = '', $echo = true ) {
./wp-includes/general-template.php:function get_the_date( $d = '', $post = null ) {
./wp-includes/general-template.php:function the_modified_date($d = '', $before='', $after='', $echo = true) {
./wp-includes/general-template.php:function get_the_modified_date($d = '') {
./wp-includes/general-template.php:function the_time( $d = '' ) {
./wp-includes/general-template.php:function get_the_time( $d = '', $post = null ) {
./wp-includes/general-template.php:function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false ) {
./wp-includes/general-template.php:function the_modified_time($d = '') {
./wp-includes/general-template.php:function get_the_modified_time($d = '') {
./wp-includes/general-template.php:function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false ) {
./wp-includes/general-template.php:function the_weekday() {
./wp-includes/general-template.php:function the_weekday_date($before='',$after='') {
./wp-includes/general-template.php:function wp_head() {
./wp-includes/general-template.php:function wp_footer() {
./wp-includes/general-template.php:function feed_links( $args = array() ) {
./wp-includes/general-template.php:function feed_links_extra( $args = array() ) {
./wp-includes/general-template.php:function rsd_link() {
./wp-includes/general-template.php:function wlwmanifest_link() {
./wp-includes/general-template.php:function noindex() {
./wp-includes/general-template.php:function wp_no_robots() {
./wp-includes/general-template.php:function user_can_richedit() {
./wp-includes/general-template.php:function wp_default_editor() {
./wp-includes/general-template.php:function wp_editor( $content, $editor_id, $settings = array() ) {
./wp-includes/general-template.php:function get_search_query( $escaped = true ) {
./wp-includes/general-template.php:function the_search_query() {
./wp-includes/general-template.php:function language_attributes($doctype = 'html') {
./wp-includes/general-template.php:function paginate_links( $args = '' ) {
./wp-includes/general-template.php:function wp_admin_css_color( $key, $name, $url, $colors = array(), $icons = array() ) {
./wp-includes/general-template.php:function register_admin_color_schemes() {
./wp-includes/general-template.php:function wp_admin_css_uri( $file = 'wp-admin' ) {
./wp-includes/general-template.php:function wp_admin_css( $file = 'wp-admin', $force_echo = false ) {
./wp-includes/general-template.php:function add_thickbox() {
./wp-includes/general-template.php:function wp_generator() {
./wp-includes/general-template.php:function the_generator( $type ) {
./wp-includes/general-template.php:function get_the_generator( $type = '' ) {
./wp-includes/general-template.php:function checked( $checked, $current = true, $echo = true ) {
./wp-includes/general-template.php:function selected( $selected, $current = true, $echo = true ) {
./wp-includes/general-template.php:function disabled( $disabled, $current = true, $echo = true ) {
./wp-includes/general-template.php:function __checked_selected_helper( $helper, $current, $echo, $type ) {
./wp-includes/general-template.php:function wp_heartbeat_settings( $settings ) {
./wp-includes/http.php:function _wp_http_get_object() {
./wp-includes/http.php:function wp_safe_remote_request( $url, $args = array() ) {
./wp-includes/http.php:function wp_safe_remote_get( $url, $args = array() ) {
./wp-includes/http.php:function wp_safe_remote_post( $url, $args = array() ) {
./wp-includes/http.php:function wp_safe_remote_head( $url, $args = array() ) {
./wp-includes/http.php:function wp_remote_request($url, $args = array()) {
./wp-includes/http.php:function wp_remote_get($url, $args = array()) {
./wp-includes/http.php:function wp_remote_post($url, $args = array()) {
./wp-includes/http.php:function wp_remote_head($url, $args = array()) {
./wp-includes/http.php:function wp_remote_retrieve_headers(&$response) {
./wp-includes/http.php:function wp_remote_retrieve_header(&$response, $header) {
./wp-includes/http.php:function wp_remote_retrieve_response_code(&$response) {
./wp-includes/http.php:function wp_remote_retrieve_response_message(&$response) {
./wp-includes/http.php:function wp_remote_retrieve_body(&$response) {
./wp-includes/http.php:function wp_http_supports( $capabilities = array(), $url = null ) {
./wp-includes/http.php:function get_http_origin() {
./wp-includes/http.php:function get_allowed_http_origins() {
./wp-includes/http.php:function is_allowed_http_origin( $origin = null ) {
./wp-includes/http.php:function send_origin_headers() {
./wp-includes/http.php:function wp_http_validate_url( $url ) {
./wp-includes/http.php:function allowed_http_request_hosts( $is_external, $host ) {
./wp-includes/http.php:function ms_allowed_http_request_hosts( $is_external, $host ) {
./wp-includes/js/tinymce/wp-tinymce.php:function get_file($path) {
./wp-includes/kses.php:function wp_kses( $string, $allowed_html, $allowed_protocols = array() ) {
./wp-includes/kses.php:function wp_kses_allowed_html( $context = '' ) {
./wp-includes/kses.php:function wp_kses_hook( $string, $allowed_html, $allowed_protocols ) {
./wp-includes/kses.php:function wp_kses_version() {
./wp-includes/kses.php:function wp_kses_split( $string, $allowed_html, $allowed_protocols ) {
./wp-includes/kses.php:function _wp_kses_split_callback( $match ) {
./wp-includes/kses.php:function wp_kses_split2($string, $allowed_html, $allowed_protocols) {
./wp-includes/kses.php:function wp_kses_attr($element, $attr, $allowed_html, $allowed_protocols) {
./wp-includes/kses.php:function wp_kses_hair($attr, $allowed_protocols) {
./wp-includes/kses.php:function wp_kses_check_attr_val($value, $vless, $checkname, $checkvalue) {
./wp-includes/kses.php:function wp_kses_bad_protocol($string, $allowed_protocols) {
./wp-includes/kses.php:function wp_kses_no_null($string) {
./wp-includes/kses.php:function wp_kses_stripslashes($string) {
./wp-includes/kses.php:function wp_kses_array_lc($inarray) {
./wp-includes/kses.php:function wp_kses_js_entities($string) {
./wp-includes/kses.php:function wp_kses_html_error($string) {
./wp-includes/kses.php:function wp_kses_bad_protocol_once($string, $allowed_protocols, $count = 1 ) {
./wp-includes/kses.php:function wp_kses_bad_protocol_once2( $string, $allowed_protocols ) {
./wp-includes/kses.php:function wp_kses_normalize_entities($string) {
./wp-includes/kses.php:function wp_kses_named_entities($matches) {
./wp-includes/kses.php:function wp_kses_normalize_entities2($matches) {
./wp-includes/kses.php:function wp_kses_normalize_entities3($matches) {
./wp-includes/kses.php:function valid_unicode($i) {
./wp-includes/kses.php:function wp_kses_decode_entities($string) {
./wp-includes/kses.php:function _wp_kses_decode_entities_chr( $match ) {
./wp-includes/kses.php:function _wp_kses_decode_entities_chr_hexdec( $match ) {
./wp-includes/kses.php:function wp_filter_kses( $data ) {
./wp-includes/kses.php:function wp_kses_data( $data ) {
./wp-includes/kses.php:function wp_filter_post_kses($data) {
./wp-includes/kses.php:function wp_kses_post($data) {
./wp-includes/kses.php:function wp_filter_nohtml_kses( $data ) {
./wp-includes/kses.php:function kses_init_filters() {
./wp-includes/kses.php:function kses_remove_filters() {
./wp-includes/kses.php:function kses_init() {
./wp-includes/kses.php:function safecss_filter_attr( $css, $deprecated = '' ) {
./wp-includes/kses.php:function _wp_add_global_attributes( $value ) {
./wp-includes/l10n.php:function get_locale() {
./wp-includes/l10n.php:function translate( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function before_last_bar( $string ) {
./wp-includes/l10n.php:function translate_with_gettext_context( $text, $context, $domain = 'default' ) {
./wp-includes/l10n.php:function __( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function esc_attr__( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function esc_html__( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function _e( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function esc_attr_e( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function esc_html_e( $text, $domain = 'default' ) {
./wp-includes/l10n.php:function _x( $text, $context, $domain = 'default' ) {
./wp-includes/l10n.php:function _ex( $text, $context, $domain = 'default' ) {
./wp-includes/l10n.php:function esc_attr_x( $text, $context, $domain = 'default' ) {
./wp-includes/l10n.php:function esc_html_x( $text, $context, $domain = 'default' ) {
./wp-includes/l10n.php:function _n( $single, $plural, $number, $domain = 'default' ) {
./wp-includes/l10n.php:function _nx($single, $plural, $number, $context, $domain = 'default') {
./wp-includes/l10n.php:function _n_noop( $singular, $plural, $domain = null ) {
./wp-includes/l10n.php:function _nx_noop( $singular, $plural, $context, $domain = null ) {
./wp-includes/l10n.php:function translate_nooped_plural( $nooped_plural, $count, $domain = 'default' ) {
./wp-includes/l10n.php:function load_textdomain( $domain, $mofile ) {
./wp-includes/l10n.php:function unload_textdomain( $domain ) {
./wp-includes/l10n.php:function load_default_textdomain() {
./wp-includes/l10n.php:function load_plugin_textdomain( $domain, $deprecated = false, $plugin_rel_path = false ) {
./wp-includes/l10n.php:function load_muplugin_textdomain( $domain, $mu_plugin_rel_path = '' ) {
./wp-includes/l10n.php:function load_theme_textdomain( $domain, $path = false ) {
./wp-includes/l10n.php:function load_child_theme_textdomain( $domain, $path = false ) {
./wp-includes/l10n.php:function get_translations_for_domain( $domain ) {
./wp-includes/l10n.php:function is_textdomain_loaded( $domain ) {
./wp-includes/l10n.php:function translate_user_role( $name ) {
./wp-includes/l10n.php:function get_available_languages( $dir = null ) {
./wp-includes/l10n.php:function wp_get_installed_translations( $type ) {
./wp-includes/l10n.php:function wp_get_pomo_file_data( $po_file ) {
./wp-includes/link-template.php:function the_permalink() {
./wp-includes/link-template.php:function user_trailingslashit($string, $type_of_url = '') {
./wp-includes/link-template.php:function permalink_anchor( $mode = 'id' ) {
./wp-includes/link-template.php:function get_the_permalink( $id = 0, $leavename = false ) {
./wp-includes/link-template.php:function get_permalink( $id = 0, $leavename = false ) {
./wp-includes/link-template.php:function get_post_permalink( $id = 0, $leavename = false, $sample = false ) {
./wp-includes/link-template.php:function post_permalink( $post_id = 0, $deprecated = '' ) {
./wp-includes/link-template.php:function get_page_link( $post = false, $leavename = false, $sample = false ) {
./wp-includes/link-template.php:function _get_page_link( $post = false, $leavename = false, $sample = false ) {
./wp-includes/link-template.php:function get_attachment_link( $post = null, $leavename = false ) {
./wp-includes/link-template.php:function get_year_link($year) {
./wp-includes/link-template.php:function get_month_link($year, $month) {
./wp-includes/link-template.php:function get_day_link($year, $month, $day) {
./wp-includes/link-template.php:function the_feed_link( $anchor, $feed = '' ) {
./wp-includes/link-template.php:function get_feed_link($feed = '') {
./wp-includes/link-template.php:function get_post_comments_feed_link($post_id = 0, $feed = '') {
./wp-includes/link-template.php:function post_comments_feed_link( $link_text = '', $post_id = '', $feed = '' ) {
./wp-includes/link-template.php:function get_author_feed_link( $author_id, $feed = '' ) {
./wp-includes/link-template.php:function get_category_feed_link($cat_id, $feed = '') {
./wp-includes/link-template.php:function get_term_feed_link( $term_id, $taxonomy = 'category', $feed = '' ) {
./wp-includes/link-template.php:function get_tag_feed_link($tag_id, $feed = '') {
./wp-includes/link-template.php:function get_edit_tag_link( $tag_id, $taxonomy = 'post_tag' ) {
./wp-includes/link-template.php:function edit_tag_link( $link = '', $before = '', $after = '', $tag = null ) {
./wp-includes/link-template.php:function get_edit_term_link( $term_id, $taxonomy, $object_type = '' ) {
./wp-includes/link-template.php:function edit_term_link( $link = '', $before = '', $after = '', $term = null, $echo = true ) {
./wp-includes/link-template.php:function get_search_link( $query = '' ) {
./wp-includes/link-template.php:function get_search_feed_link($search_query = '', $feed = '') {
./wp-includes/link-template.php:function get_search_comments_feed_link($search_query = '', $feed = '') {
./wp-includes/link-template.php:function get_post_type_archive_link( $post_type ) {
./wp-includes/link-template.php:function get_post_type_archive_feed_link( $post_type, $feed = '' ) {
./wp-includes/link-template.php:function get_edit_post_link( $id = 0, $context = 'display' ) {
./wp-includes/link-template.php:function edit_post_link( $link = null, $before = '', $after = '', $id = 0 ) {
./wp-includes/link-template.php:function get_delete_post_link( $id = 0, $deprecated = '', $force_delete = false ) {
./wp-includes/link-template.php:function get_edit_comment_link( $comment_id = 0 ) {
./wp-includes/link-template.php:function edit_comment_link( $link = null, $before = '', $after = '' ) {
./wp-includes/link-template.php:function get_edit_bookmark_link( $link = 0 ) {
./wp-includes/link-template.php:function edit_bookmark_link( $link = '', $before = '', $after = '', $bookmark = null ) {
./wp-includes/link-template.php:function get_edit_user_link( $user_id = null ) {
./wp-includes/link-template.php:function get_previous_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_next_post( $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_adjacent_post( $in_same_term = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_adjacent_post_rel_link( $title = '%title', $in_same_term = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ) {
./wp-includes/link-template.php:function adjacent_posts_rel_link( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function adjacent_posts_rel_link_wp_head() {
./wp-includes/link-template.php:function next_post_rel_link( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function prev_post_rel_link( $title = '%title', $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_boundary_post( $in_same_term = false, $excluded_terms = '', $start = true, $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_previous_post_link( $format = '&laquo; %link', $link = '%title', $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function previous_post_link( $format = '&laquo; %link', $link = '%title', $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_next_post_link( $format = '%link &raquo;', $link = '%title', $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function next_post_link( $format = '%link &raquo;', $link = '%title', $in_same_cat = false, $excluded_terms = '', $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_adjacent_post_link( $format, $link, $in_same_cat = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ) {
./wp-includes/link-template.php:function adjacent_post_link( $format, $link, $in_same_cat = false, $excluded_terms = '', $previous = true, $taxonomy = 'category' ) {
./wp-includes/link-template.php:function get_pagenum_link($pagenum = 1, $escape = true ) {
./wp-includes/link-template.php:function get_next_posts_page_link($max_page = 0) {
./wp-includes/link-template.php:function next_posts( $max_page = 0, $echo = true ) {
./wp-includes/link-template.php:function get_next_posts_link( $label = null, $max_page = 0 ) {
./wp-includes/link-template.php:function next_posts_link( $label = null, $max_page = 0 ) {
./wp-includes/link-template.php:function get_previous_posts_page_link() {
./wp-includes/link-template.php:function previous_posts( $echo = true ) {
./wp-includes/link-template.php:function get_previous_posts_link( $label = null ) {
./wp-includes/link-template.php:function previous_posts_link( $label = null ) {
./wp-includes/link-template.php:function get_posts_nav_link( $args = array() ) {
./wp-includes/link-template.php:function posts_nav_link( $sep = '', $prelabel = '', $nxtlabel = '' ) {
./wp-includes/link-template.php:function get_comments_pagenum_link( $pagenum = 1, $max_page = 0 ) {
./wp-includes/link-template.php:function get_next_comments_link( $label = '', $max_page = 0 ) {
./wp-includes/link-template.php:function next_comments_link( $label = '', $max_page = 0 ) {
./wp-includes/link-template.php:function get_previous_comments_link( $label = '' ) {
./wp-includes/link-template.php:function previous_comments_link( $label = '' ) {
./wp-includes/link-template.php:function paginate_comments_links($args = array()) {
./wp-includes/link-template.php:function get_shortcut_link() {
./wp-includes/link-template.php:function home_url( $path = '', $scheme = null ) {
./wp-includes/link-template.php:function get_home_url( $blog_id = null, $path = '', $scheme = null ) {
./wp-includes/link-template.php:function site_url( $path = '', $scheme = null ) {
./wp-includes/link-template.php:function get_site_url( $blog_id = null, $path = '', $scheme = null ) {
./wp-includes/link-template.php:function admin_url( $path = '', $scheme = 'admin' ) {
./wp-includes/link-template.php:function get_admin_url( $blog_id = null, $path = '', $scheme = 'admin' ) {
./wp-includes/link-template.php:function includes_url( $path = '', $scheme = null ) {
./wp-includes/link-template.php:function content_url($path = '') {
./wp-includes/link-template.php:function plugins_url($path = '', $plugin = '') {
./wp-includes/link-template.php:function network_site_url( $path = '', $scheme = null ) {
./wp-includes/link-template.php:function network_home_url( $path = '', $scheme = null ) {
./wp-includes/link-template.php:function network_admin_url( $path = '', $scheme = 'admin' ) {
./wp-includes/link-template.php:function user_admin_url( $path = '', $scheme = 'admin' ) {
./wp-includes/link-template.php:function self_admin_url($path = '', $scheme = 'admin') {
./wp-includes/link-template.php:function set_url_scheme( $url, $scheme = null ) {
./wp-includes/link-template.php:function get_dashboard_url( $user_id = 0, $path = '', $scheme = 'admin' ) {
./wp-includes/link-template.php:function get_edit_profile_url( $user_id = 0, $scheme = 'admin' ) {
./wp-includes/link-template.php:function rel_canonical() {
./wp-includes/link-template.php:function wp_get_shortlink($id = 0, $context = 'post', $allow_slugs = true) {
./wp-includes/link-template.php:function wp_shortlink_wp_head() {
./wp-includes/link-template.php:function wp_shortlink_header() {
./wp-includes/link-template.php:function the_shortlink( $text = '', $title = '', $before = '', $after = '' ) {
./wp-includes/load.php:function wp_unregister_GLOBALS() {
./wp-includes/load.php:function wp_fix_server_vars() {
./wp-includes/load.php:function wp_check_php_mysql_versions() {
./wp-includes/load.php:function wp_favicon_request() {
./wp-includes/load.php:function wp_maintenance() {
./wp-includes/load.php:function timer_start() {
./wp-includes/load.php:function timer_stop( $display = 0, $precision = 3 ) {
./wp-includes/load.php:function wp_debug_mode() {
./wp-includes/load.php:function wp_set_lang_dir() {
./wp-includes/load.php:function require_wp_db() {
./wp-includes/load.php:function wp_set_wpdb_vars() {
./wp-includes/load.php:function wp_using_ext_object_cache( $using = null ) {
./wp-includes/load.php:function wp_start_object_cache() {
./wp-includes/load.php:function wp_not_installed() {
./wp-includes/load.php:function wp_get_mu_plugins() {
./wp-includes/load.php:function wp_get_active_and_valid_plugins() {
./wp-includes/load.php:function wp_set_internal_encoding() {
./wp-includes/load.php:function wp_magic_quotes() {
./wp-includes/load.php:function shutdown_action_hook() {
./wp-includes/load.php:function wp_clone( $object ) {
./wp-includes/load.php:function is_admin() {
./wp-includes/load.php:function is_blog_admin() {
./wp-includes/load.php:function is_network_admin() {
./wp-includes/load.php:function is_user_admin() {
./wp-includes/load.php:function is_multisite() {
./wp-includes/load.php:function get_current_blog_id() {
./wp-includes/load.php:function wp_load_translations_early() {
./wp-includes/locale.php:function is_rtl() {
./wp-includes/media-template.php:function wp_underscore_audio_template() {
./wp-includes/media-template.php:function wp_underscore_video_template() {
./wp-includes/media-template.php:function wp_print_media_templates() {
./wp-includes/media.php:function image_constrain_size_for_editor($width, $height, $size = 'medium', $context = null ) {
./wp-includes/media.php:function image_hwstring($width, $height) {
./wp-includes/media.php:function image_downsize($id, $size = 'medium') {
./wp-includes/media.php:function add_image_size( $name, $width = 0, $height = 0, $crop = false ) {
./wp-includes/media.php:function has_image_size( $name ) {
./wp-includes/media.php:function remove_image_size( $name ) {
./wp-includes/media.php:function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) {
./wp-includes/media.php:function get_image_tag($id, $alt, $title, $align, $size='medium') {
./wp-includes/media.php:function wp_constrain_dimensions( $current_width, $current_height, $max_width=0, $max_height=0 ) {
./wp-includes/media.php:function image_resize_dimensions($orig_w, $orig_h, $dest_w, $dest_h, $crop = false) {
./wp-includes/media.php:function image_make_intermediate_size( $file, $width, $height, $crop = false ) {
./wp-includes/media.php:function image_get_intermediate_size($post_id, $size='thumbnail') {
./wp-includes/media.php:function get_intermediate_image_sizes() {
./wp-includes/media.php:function wp_get_attachment_image_src($attachment_id, $size='thumbnail', $icon = false) {
./wp-includes/media.php:function wp_get_attachment_image($attachment_id, $size = 'thumbnail', $icon = false, $attr = '') {
./wp-includes/media.php:function _wp_post_thumbnail_class_filter( $attr ) {
./wp-includes/media.php:function _wp_post_thumbnail_class_filter_add( $attr ) {
./wp-includes/media.php:function _wp_post_thumbnail_class_filter_remove( $attr ) {
./wp-includes/media.php:function img_caption_shortcode( $attr, $content = null ) {
./wp-includes/media.php:function gallery_shortcode( $attr ) {
./wp-includes/media.php:function wp_underscore_playlist_templates() {
./wp-includes/media.php:function wp_playlist_scripts( $type ) {
./wp-includes/media.php:function wp_playlist_shortcode( $attr ) {
./wp-includes/media.php:function wp_mediaelement_fallback( $url ) {
./wp-includes/media.php:function wp_get_audio_extensions() {
./wp-includes/media.php:function wp_get_attachment_id3_keys( $attachment, $context = 'display' ) {
./wp-includes/media.php:function wp_audio_shortcode( $attr, $content = '' ) {
./wp-includes/media.php:function wp_get_video_extensions() {
./wp-includes/media.php:function wp_video_shortcode( $attr, $content = '' ) {
./wp-includes/media.php:function previous_image_link($size = 'thumbnail', $text = false) {
./wp-includes/media.php:function next_image_link($size = 'thumbnail', $text = false) {
./wp-includes/media.php:function adjacent_image_link($prev = true, $size = 'thumbnail', $text = false) {
./wp-includes/media.php:function get_attachment_taxonomies($attachment) {
./wp-includes/media.php:function get_taxonomies_for_attachments( $output = 'names' ) {
./wp-includes/media.php:function wp_imagecreatetruecolor($width, $height) {
./wp-includes/media.php:function wp_embed_register_handler( $id, $regex, $callback, $priority = 10 ) {
./wp-includes/media.php:function wp_embed_unregister_handler( $id, $priority = 10 ) {
./wp-includes/media.php:function wp_embed_defaults() {
./wp-includes/media.php:function wp_expand_dimensions( $example_width, $example_height, $max_width, $max_height ) {
./wp-includes/media.php:function wp_oembed_get( $url, $args = '' ) {
./wp-includes/media.php:function wp_oembed_add_provider( $format, $provider, $regex = false ) {
./wp-includes/media.php:function wp_oembed_remove_provider( $format ) {
./wp-includes/media.php:function wp_maybe_load_embeds() {
./wp-includes/media.php:function wp_embed_handler_googlevideo( $matches, $attr, $url, $rawattr ) {
./wp-includes/media.php:function wp_embed_handler_audio( $matches, $attr, $url, $rawattr ) {
./wp-includes/media.php:function wp_embed_handler_video( $matches, $attr, $url, $rawattr ) {
./wp-includes/media.php:function wp_convert_hr_to_bytes( $size ) {
./wp-includes/media.php:function wp_max_upload_size() {
./wp-includes/media.php:function wp_get_image_editor( $path, $args = array() ) {
./wp-includes/media.php:function wp_image_editor_supports( $args = array() ) {
./wp-includes/media.php:function _wp_image_editor_choose( $args = array() ) {
./wp-includes/media.php:function wp_plupload_default_settings() {
./wp-includes/media.php:function wp_prepare_attachment_for_js( $attachment ) {
./wp-includes/media.php:function wp_enqueue_media( $args = array() ) {
./wp-includes/media.php:function get_attached_media( $type, $post = 0 ) {
./wp-includes/media.php:function get_media_embedded_in_content( $content, $types = null ) {
./wp-includes/media.php:function get_post_galleries( $post, $html = true ) {
./wp-includes/media.php:function get_post_gallery( $post = 0, $html = true ) {
./wp-includes/media.php:function get_post_galleries_images( $post = 0 ) {
./wp-includes/media.php:function get_post_gallery_images( $post = 0 ) {
./wp-includes/media.php:function wp_maybe_generate_attachment_metadata( $attachment ) {
./wp-includes/meta.php:function add_metadata($meta_type, $object_id, $meta_key, $meta_value, $unique = false) {
./wp-includes/meta.php:function update_metadata($meta_type, $object_id, $meta_key, $meta_value, $prev_value = '') {
./wp-includes/meta.php:function delete_metadata($meta_type, $object_id, $meta_key, $meta_value = '', $delete_all = false) {
./wp-includes/meta.php:function get_metadata($meta_type, $object_id, $meta_key = '', $single = false) {
./wp-includes/meta.php:function metadata_exists( $meta_type, $object_id, $meta_key ) {
./wp-includes/meta.php:function get_metadata_by_mid( $meta_type, $meta_id ) {
./wp-includes/meta.php:function update_metadata_by_mid( $meta_type, $meta_id, $meta_value, $meta_key = false ) {
./wp-includes/meta.php:function delete_metadata_by_mid( $meta_type, $meta_id ) {
./wp-includes/meta.php:function update_meta_cache($meta_type, $object_ids) {
./wp-includes/meta.php:function get_meta_sql( $meta_query, $type, $primary_table, $primary_id_column, $context = null ) {
./wp-includes/meta.php:function _get_meta_table($type) {
./wp-includes/meta.php:function is_protected_meta( $meta_key, $meta_type = null ) {
./wp-includes/meta.php:function sanitize_meta( $meta_key, $meta_value, $meta_type ) {
./wp-includes/meta.php:function register_meta( $meta_type, $meta_key, $sanitize_callback, $auth_callback = null ) {
./wp-includes/ms-blogs.php:function wpmu_update_blogs_date() {
./wp-includes/ms-blogs.php:function get_blogaddress_by_id( $blog_id ) {
./wp-includes/ms-blogs.php:function get_blogaddress_by_name( $blogname ) {
./wp-includes/ms-blogs.php:function get_id_from_blogname( $slug ) {
./wp-includes/ms-blogs.php:function get_blog_details( $fields = null, $get_all = true ) {
./wp-includes/ms-blogs.php:function refresh_blog_details( $blog_id ) {
./wp-includes/ms-blogs.php:function update_blog_details( $blog_id, $details = array() ) {
./wp-includes/ms-blogs.php:function clean_blog_cache( $blog ) {
./wp-includes/ms-blogs.php:function get_blog_option( $id, $option, $default = false ) {
./wp-includes/ms-blogs.php:function add_blog_option( $id, $option, $value ) {
./wp-includes/ms-blogs.php:function delete_blog_option( $id, $option ) {
./wp-includes/ms-blogs.php:function update_blog_option( $id, $option, $value, $deprecated = null ) {
./wp-includes/ms-blogs.php:function switch_to_blog( $new_blog, $deprecated = null ) {
./wp-includes/ms-blogs.php:function restore_current_blog() {
./wp-includes/ms-blogs.php:function ms_is_switched() {
./wp-includes/ms-blogs.php:function is_archived( $id ) {
./wp-includes/ms-blogs.php:function update_archived( $id, $archived ) {
./wp-includes/ms-blogs.php:function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) {
./wp-includes/ms-blogs.php:function get_blog_status( $id, $pref ) {
./wp-includes/ms-blogs.php:function get_last_updated( $deprecated = '', $start = 0, $quantity = 40 ) {
./wp-includes/ms-blogs.php:function _update_blog_date_on_post_publish( $new_status, $old_status, $post ) {
./wp-includes/ms-blogs.php:function _update_blog_date_on_post_delete( $post_id ) {
./wp-includes/ms-default-constants.php:function ms_upload_constants() {
./wp-includes/ms-default-constants.php:function ms_cookie_constants( ) {
./wp-includes/ms-default-constants.php:function ms_file_constants() {
./wp-includes/ms-default-constants.php:function ms_subdomain_constants() {
./wp-includes/ms-deprecated.php:function get_dashboard_blog() {
./wp-includes/ms-deprecated.php:function generate_random_password( $len = 8 ) {
./wp-includes/ms-deprecated.php:function is_site_admin( $user_login = '' ) {
./wp-includes/ms-deprecated.php:function graceful_fail( $message ) {
./wp-includes/ms-deprecated.php:function get_user_details( $username ) {
./wp-includes/ms-deprecated.php:function clear_global_post_cache( $post_id ) {
./wp-includes/ms-deprecated.php:function is_main_blog() {
./wp-includes/ms-deprecated.php:function validate_email( $email, $check_domain = true) {
./wp-includes/ms-deprecated.php:function get_blog_list( $start = 0, $num = 10, $deprecated = '' ) {
./wp-includes/ms-deprecated.php:function get_most_active_blogs( $num = 10, $display = true ) {
./wp-includes/ms-deprecated.php:function wpmu_admin_do_redirect( $url = '' ) {
./wp-includes/ms-deprecated.php:function wpmu_admin_redirect_add_updated_param( $url = '' ) {
./wp-includes/ms-deprecated.php:function get_user_id_from_string( $string ) {
./wp-includes/ms-deprecated.php:function get_blogaddress_by_domain( $domain, $path ) {
./wp-includes/ms-functions.php:function get_sitestats() {
./wp-includes/ms-functions.php:function get_admin_users_for_domain( $sitedomain = '', $path = '' ) {
./wp-includes/ms-functions.php:function get_active_blog_for_user( $user_id ) {
./wp-includes/ms-functions.php:function get_user_count() {
./wp-includes/ms-functions.php:function get_blog_count( $network_id = 0 ) {
./wp-includes/ms-functions.php:function get_blog_post( $blog_id, $post_id ) {
./wp-includes/ms-functions.php:function add_user_to_blog( $blog_id, $user_id, $role ) {
./wp-includes/ms-functions.php:function remove_user_from_blog($user_id, $blog_id = '', $reassign = '') {
./wp-includes/ms-functions.php:function create_empty_blog( $domain, $path, $weblog_title, $site_id = 1 ) {
./wp-includes/ms-functions.php:function get_blog_permalink( $blog_id, $post_id ) {
./wp-includes/ms-functions.php:function get_blog_id_from_url( $domain, $path = '/' ) {
./wp-includes/ms-functions.php:function is_email_address_unsafe( $user_email ) {
./wp-includes/ms-functions.php:function wpmu_validate_user_signup($user_name, $user_email) {
./wp-includes/ms-functions.php:function wpmu_validate_blog_signup( $blogname, $blog_title, $user = '' ) {
./wp-includes/ms-functions.php:function wpmu_signup_blog( $domain, $path, $title, $user, $user_email, $meta = array() ) {
./wp-includes/ms-functions.php:function wpmu_signup_user( $user, $user_email, $meta = array() ) {
./wp-includes/ms-functions.php:function wpmu_signup_blog_notification( $domain, $path, $title, $user, $user_email, $key, $meta = array() ) {
./wp-includes/ms-functions.php:function wpmu_signup_user_notification( $user, $user_email, $key, $meta = array() ) {
./wp-includes/ms-functions.php:function wpmu_activate_signup($key) {
./wp-includes/ms-functions.php:function wpmu_create_user( $user_name, $password, $email ) {
./wp-includes/ms-functions.php:function wpmu_create_blog( $domain, $path, $title, $user_id, $meta = array(), $site_id = 1 ) {
./wp-includes/ms-functions.php:function newblog_notify_siteadmin( $blog_id, $deprecated = '' ) {
./wp-includes/ms-functions.php:function newuser_notify_siteadmin( $user_id ) {
./wp-includes/ms-functions.php:function domain_exists($domain, $path, $site_id = 1) {
./wp-includes/ms-functions.php:function insert_blog($domain, $path, $site_id) {
./wp-includes/ms-functions.php:function install_blog( $blog_id, $blog_title = '' ) {
./wp-includes/ms-functions.php:function install_blog_defaults($blog_id, $user_id) {
./wp-includes/ms-functions.php:function wpmu_welcome_notification( $blog_id, $user_id, $password, $title, $meta = array() ) {
./wp-includes/ms-functions.php:function wpmu_welcome_user_notification( $user_id, $password, $meta = array() ) {
./wp-includes/ms-functions.php:function get_current_site() {
./wp-includes/ms-functions.php:function get_most_recent_post_of_user( $user_id ) {
./wp-includes/ms-functions.php:function get_dirsize( $directory ) {
./wp-includes/ms-functions.php:function recurse_dirsize( $directory ) {
./wp-includes/ms-functions.php:function check_upload_mimes( $mimes ) {
./wp-includes/ms-functions.php:function update_posts_count( $deprecated = '' ) {
./wp-includes/ms-functions.php:function wpmu_log_new_registrations( $blog_id, $user_id ) {
./wp-includes/ms-functions.php:function global_terms( $term_id, $deprecated = '' ) {
./wp-includes/ms-functions.php:function redirect_this_site( $deprecated = '' ) {
./wp-includes/ms-functions.php:function upload_is_file_too_big( $upload ) {
./wp-includes/ms-functions.php:function signup_nonce_fields() {
./wp-includes/ms-functions.php:function signup_nonce_check( $result ) {
./wp-includes/ms-functions.php:function maybe_redirect_404() {
./wp-includes/ms-functions.php:function maybe_add_existing_user_to_blog() {
./wp-includes/ms-functions.php:function add_existing_user_to_blog( $details = false ) {
./wp-includes/ms-functions.php:function add_new_user_to_blog( $user_id, $password, $meta ) {
./wp-includes/ms-functions.php:function fix_phpmailer_messageid( $phpmailer ) {
./wp-includes/ms-functions.php:function is_user_spammy( $user = null ) {
./wp-includes/ms-functions.php:function update_blog_public( $old_value, $value ) {
./wp-includes/ms-functions.php:function is_user_option_local( $key, $user_id = 0, $blog_id = 0 ) {
./wp-includes/ms-functions.php:function users_can_register_signup_filter() {
./wp-includes/ms-functions.php:function welcome_user_msg_filter( $text ) {
./wp-includes/ms-functions.php:function force_ssl_content( $force = '' ) {
./wp-includes/ms-functions.php:function filter_SSL( $url ) {
./wp-includes/ms-functions.php:function wp_schedule_update_network_counts() {
./wp-includes/ms-functions.php:function wp_update_network_counts() {
./wp-includes/ms-functions.php:function wp_maybe_update_network_site_counts() {
./wp-includes/ms-functions.php:function wp_maybe_update_network_user_counts() {
./wp-includes/ms-functions.php:function wp_update_network_site_counts() {
./wp-includes/ms-functions.php:function wp_update_network_user_counts() {
./wp-includes/ms-functions.php:function get_space_used() {
./wp-includes/ms-functions.php:function get_space_allowed() {
./wp-includes/ms-functions.php:function get_upload_space_available() {
./wp-includes/ms-functions.php:function is_upload_space_available() {
./wp-includes/ms-functions.php:function upload_size_limit_filter( $size ) {
./wp-includes/ms-functions.php:function wp_is_large_network( $using = 'sites' ) {
./wp-includes/ms-functions.php:function wp_get_sites( $args = array() ) {
./wp-includes/ms-load.php:function is_subdomain_install() {
./wp-includes/ms-load.php:function wp_get_active_network_plugins() {
./wp-includes/ms-load.php:function ms_site_check() {
./wp-includes/ms-load.php:function get_network_by_path( $domain, $path, $segments = null ) {
./wp-includes/ms-load.php:function wp_get_network( $network ) {
./wp-includes/ms-load.php:function get_site_by_path( $domain, $path, $segments = null ) {
./wp-includes/ms-load.php:function ms_not_installed() {
./wp-includes/ms-load.php:function get_current_site_name( $current_site ) {
./wp-includes/ms-load.php:function wpmu_current_site() {
./wp-includes/nav-menu-template.php:function wp_nav_menu( $args = array() ) {
./wp-includes/nav-menu-template.php:function _wp_menu_item_classes_by_context( &$menu_items ) {
./wp-includes/nav-menu-template.php:function walk_nav_menu_tree( $items, $depth, $r ) {
./wp-includes/nav-menu-template.php:function _nav_menu_item_id_use_once( $id, $item ) {
./wp-includes/nav-menu.php:function wp_get_nav_menu_object( $menu ) {
./wp-includes/nav-menu.php:function is_nav_menu( $menu ) {
./wp-includes/nav-menu.php:function register_nav_menus( $locations = array() ) {
./wp-includes/nav-menu.php:function unregister_nav_menu( $location ) {
./wp-includes/nav-menu.php:function register_nav_menu( $location, $description ) {
./wp-includes/nav-menu.php:function get_registered_nav_menus() {
./wp-includes/nav-menu.php:function get_nav_menu_locations() {
./wp-includes/nav-menu.php:function has_nav_menu( $location ) {
./wp-includes/nav-menu.php:function is_nav_menu_item( $menu_item_id = 0 ) {
./wp-includes/nav-menu.php:function wp_create_nav_menu( $menu_name ) {
./wp-includes/nav-menu.php:function wp_delete_nav_menu( $menu ) {
./wp-includes/nav-menu.php:function wp_update_nav_menu_object( $menu_id = 0, $menu_data = array() ) {
./wp-includes/nav-menu.php:function wp_update_nav_menu_item( $menu_id = 0, $menu_item_db_id = 0, $menu_item_data = array() ) {
./wp-includes/nav-menu.php:function wp_get_nav_menus( $args = array() ) {
./wp-includes/nav-menu.php:function _sort_nav_menu_items( $a, $b ) {
./wp-includes/nav-menu.php:function _is_valid_nav_menu_item( $item ) {
./wp-includes/nav-menu.php:function wp_get_nav_menu_items( $menu, $args = array() ) {
./wp-includes/nav-menu.php:function wp_setup_nav_menu_item( $menu_item ) {
./wp-includes/nav-menu.php:function wp_get_associated_nav_menu_items( $object_id = 0, $object_type = 'post_type', $taxonomy = '' ) {
./wp-includes/nav-menu.php:function _wp_delete_post_menu_item( $object_id = 0 ) {
./wp-includes/nav-menu.php:function _wp_delete_tax_menu_item( $object_id = 0, $tt_id, $taxonomy ) {
./wp-includes/nav-menu.php:function _wp_auto_add_pages_to_menu( $new_status, $old_status, $post ) {
./wp-includes/option.php:function get_option( $option, $default = false ) {
./wp-includes/option.php:function wp_protect_special_option( $option ) {
./wp-includes/option.php:function form_option( $option ) {
./wp-includes/option.php:function wp_load_alloptions() {
./wp-includes/option.php:function wp_load_core_site_options( $site_id = null ) {
./wp-includes/option.php:function update_option( $option, $value ) {
./wp-includes/option.php:function add_option( $option, $value = '', $deprecated = '', $autoload = 'yes' ) {
./wp-includes/option.php:function delete_option( $option ) {
./wp-includes/option.php:function delete_transient( $transient ) {
./wp-includes/option.php:function get_transient( $transient ) {
./wp-includes/option.php:function set_transient( $transient, $value, $expiration = 0 ) {
./wp-includes/option.php:function wp_user_settings() {
./wp-includes/option.php:function get_user_setting( $name, $default = false ) {
./wp-includes/option.php:function set_user_setting( $name, $value ) {
./wp-includes/option.php:function delete_user_setting( $names ) {
./wp-includes/option.php:function get_all_user_settings() {
./wp-includes/option.php:function wp_set_all_user_settings( $user_settings ) {
./wp-includes/option.php:function delete_all_user_settings() {
./wp-includes/option.php:function get_site_option( $option, $default = false, $use_cache = true ) {
./wp-includes/option.php:function add_site_option( $option, $value ) {
./wp-includes/option.php:function delete_site_option( $option ) {
./wp-includes/option.php:function update_site_option( $option, $value ) {
./wp-includes/option.php:function delete_site_transient( $transient ) {
./wp-includes/option.php:function get_site_transient( $transient ) {
./wp-includes/option.php:function set_site_transient( $transient, $value, $expiration = 0 ) {
./wp-includes/pluggable-deprecated.php:function set_current_user($id, $name = '') {
./wp-includes/pluggable-deprecated.php:function get_userdatabylogin($user_login) {
./wp-includes/pluggable-deprecated.php:function get_user_by_email($email) {
./wp-includes/pluggable-deprecated.php:function wp_setcookie($username, $password = '', $already_md5 = false, $home = '', $siteurl = '', $remember = false) {
./wp-includes/pluggable-deprecated.php:function wp_clearcookie() {
./wp-includes/pluggable-deprecated.php:function wp_get_cookie_login() {
./wp-includes/pluggable-deprecated.php:function wp_login($username, $password, $deprecated = '') {
./wp-includes/pluggable.php:function wp_set_current_user($id, $name = '') {
./wp-includes/pluggable.php:function wp_get_current_user() {
./wp-includes/pluggable.php:function get_currentuserinfo() {
./wp-includes/pluggable.php:function get_userdata( $user_id ) {
./wp-includes/pluggable.php:function get_user_by( $field, $value ) {
./wp-includes/pluggable.php:function cache_users( $user_ids ) {
./wp-includes/pluggable.php:function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
./wp-includes/pluggable.php:function wp_authenticate($username, $password) {
./wp-includes/pluggable.php:function wp_logout() {
./wp-includes/pluggable.php:function wp_validate_auth_cookie($cookie = '', $scheme = '') {
./wp-includes/pluggable.php:function wp_generate_auth_cookie($user_id, $expiration, $scheme = 'auth') {
./wp-includes/pluggable.php:function wp_parse_auth_cookie($cookie = '', $scheme = '') {
./wp-includes/pluggable.php:function wp_set_auth_cookie($user_id, $remember = false, $secure = '') {
./wp-includes/pluggable.php:function wp_clear_auth_cookie() {
./wp-includes/pluggable.php:function is_user_logged_in() {
./wp-includes/pluggable.php:function auth_redirect() {
./wp-includes/pluggable.php:function check_admin_referer($action = -1, $query_arg = '_wpnonce') {
./wp-includes/pluggable.php:function check_ajax_referer( $action = -1, $query_arg = false, $die = true ) {
./wp-includes/pluggable.php:function wp_redirect($location, $status = 302) {
./wp-includes/pluggable.php:function wp_sanitize_redirect($location) {
./wp-includes/pluggable.php:function wp_safe_redirect($location, $status = 302) {
./wp-includes/pluggable.php:function wp_validate_redirect($location, $default = '') {
./wp-includes/pluggable.php:function wp_notify_postauthor( $comment_id, $deprecated = null ) {
./wp-includes/pluggable.php:function wp_notify_moderator($comment_id) {
./wp-includes/pluggable.php:function wp_password_change_notification(&$user) {
./wp-includes/pluggable.php:function wp_new_user_notification($user_id, $plaintext_pass = '') {
./wp-includes/pluggable.php:function wp_nonce_tick() {
./wp-includes/pluggable.php:function wp_verify_nonce($nonce, $action = -1) {
./wp-includes/pluggable.php:function wp_create_nonce($action = -1) {
./wp-includes/pluggable.php:function wp_salt( $scheme = 'auth' ) {
./wp-includes/pluggable.php:function wp_hash($data, $scheme = 'auth') {
./wp-includes/pluggable.php:function wp_hash_password($password) {
./wp-includes/pluggable.php:function wp_check_password($password, $hash, $user_id = '') {
./wp-includes/pluggable.php:function wp_generate_password( $length = 12, $special_chars = true, $extra_special_chars = false ) {
./wp-includes/pluggable.php:function wp_rand( $min = 0, $max = 0 ) {
./wp-includes/pluggable.php:function wp_set_password( $password, $user_id ) {
./wp-includes/pluggable.php:function get_avatar( $id_or_email, $size = '96', $default = '', $alt = false ) {
./wp-includes/pluggable.php:function wp_text_diff( $left_string, $right_string, $args = null ) {
./wp-includes/pluggable.php:function hash_equals( $a, $b ) {
./wp-includes/plugin.php:function add_filter( $tag, $function_to_add, $priority = 10, $accepted_args = 1 ) {
./wp-includes/plugin.php:function has_filter($tag, $function_to_check = false) {
./wp-includes/plugin.php:function apply_filters( $tag, $value ) {
./wp-includes/plugin.php:function apply_filters_ref_array($tag, $args) {
./wp-includes/plugin.php:function remove_filter( $tag, $function_to_remove, $priority = 10 ) {
./wp-includes/plugin.php:function remove_all_filters($tag, $priority = false) {
./wp-includes/plugin.php:function current_filter() {
./wp-includes/plugin.php:function current_action() {
./wp-includes/plugin.php:function doing_filter( $filter = null ) {
./wp-includes/plugin.php:function doing_action( $action = null ) {
./wp-includes/plugin.php:function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1) {
./wp-includes/plugin.php:function do_action($tag, $arg = '') {
./wp-includes/plugin.php:function did_action($tag) {
./wp-includes/plugin.php:function do_action_ref_array($tag, $args) {
./wp-includes/plugin.php:function has_action($tag, $function_to_check = false) {
./wp-includes/plugin.php:function remove_action( $tag, $function_to_remove, $priority = 10 ) {
./wp-includes/plugin.php:function remove_all_actions($tag, $priority = false) {
./wp-includes/plugin.php:function plugin_basename( $file ) {
./wp-includes/plugin.php:function wp_register_plugin_realpath( $file ) {
./wp-includes/plugin.php:function plugin_dir_path( $file ) {
./wp-includes/plugin.php:function plugin_dir_url( $file ) {
./wp-includes/plugin.php:function register_activation_hook($file, $function) {
./wp-includes/plugin.php:function register_deactivation_hook($file, $function) {
./wp-includes/plugin.php:function register_uninstall_hook( $file, $callback ) {
./wp-includes/plugin.php:function _wp_call_all_hook($args) {
./wp-includes/plugin.php:function _wp_filter_build_unique_id($tag, $function, $priority) {
./wp-includes/post-formats.php:function get_post_format( $post = null ) {
./wp-includes/post-formats.php:function has_post_format( $format = array(), $post = null ) {
./wp-includes/post-formats.php:function set_post_format( $post, $format ) {
./wp-includes/post-formats.php:function get_post_format_strings() {
./wp-includes/post-formats.php:function get_post_format_slugs() {
./wp-includes/post-formats.php:function get_post_format_string( $slug ) {
./wp-includes/post-formats.php:function get_post_format_link( $format ) {
./wp-includes/post-formats.php:function _post_format_request( $qvs ) {
./wp-includes/post-formats.php:function _post_format_link( $link, $term, $taxonomy ) {
./wp-includes/post-formats.php:function _post_format_get_term( $term ) {
./wp-includes/post-formats.php:function _post_format_get_terms( $terms, $taxonomies, $args ) {
./wp-includes/post-formats.php:function _post_format_wp_get_object_terms( $terms ) {
./wp-includes/post-template.php:function the_ID() {
./wp-includes/post-template.php:function get_the_ID() {
./wp-includes/post-template.php:function the_title($before = '', $after = '', $echo = true) {
./wp-includes/post-template.php:function the_title_attribute( $args = '' ) {
./wp-includes/post-template.php:function get_the_title( $post = 0 ) {
./wp-includes/post-template.php:function the_guid( $id = 0 ) {
./wp-includes/post-template.php:function get_the_guid( $id = 0 ) {
./wp-includes/post-template.php:function the_content( $more_link_text = null, $strip_teaser = false) {
./wp-includes/post-template.php:function get_the_content( $more_link_text = null, $strip_teaser = false ) {
./wp-includes/post-template.php:function _convert_urlencoded_to_entities( $match ) {
./wp-includes/post-template.php:function the_excerpt() {
./wp-includes/post-template.php:function get_the_excerpt( $deprecated = '' ) {
./wp-includes/post-template.php:function has_excerpt( $id = 0 ) {
./wp-includes/post-template.php:function post_class( $class = '', $post_id = null ) {
./wp-includes/post-template.php:function get_post_class( $class = '', $post_id = null ) {
./wp-includes/post-template.php:function body_class( $class = '' ) {
./wp-includes/post-template.php:function get_body_class( $class = '' ) {
./wp-includes/post-template.php:function post_password_required( $post = null ) {
./wp-includes/post-template.php:function wp_link_pages( $args = '' ) {
./wp-includes/post-template.php:function _wp_link_page( $i ) {
./wp-includes/post-template.php:function post_custom( $key = '' ) {
./wp-includes/post-template.php:function the_meta() {
./wp-includes/post-template.php:function wp_dropdown_pages($args = '') {
./wp-includes/post-template.php:function wp_list_pages($args = '') {
./wp-includes/post-template.php:function wp_page_menu( $args = array() ) {
./wp-includes/post-template.php:function walk_page_tree($pages, $depth, $current_page, $r) {
./wp-includes/post-template.php:function walk_page_dropdown_tree() {
./wp-includes/post-template.php:function the_attachment_link( $id = 0, $fullsize = false, $deprecated = false, $permalink = false ) {
./wp-includes/post-template.php:function wp_get_attachment_link( $id = 0, $size = 'thumbnail', $permalink = false, $icon = false, $text = false ) {
./wp-includes/post-template.php:function prepend_attachment($content) {
./wp-includes/post-template.php:function get_the_password_form( $post = 0 ) {
./wp-includes/post-template.php:function is_page_template( $template = '' ) {
./wp-includes/post-template.php:function get_page_template_slug( $post_id = null ) {
./wp-includes/post-template.php:function wp_post_revision_title( $revision, $link = true ) {
./wp-includes/post-template.php:function wp_post_revision_title_expanded( $revision, $link = true ) {
./wp-includes/post-template.php:function wp_list_post_revisions( $post_id = 0, $type = 'all' ) {
./wp-includes/post-thumbnail-template.php:function has_post_thumbnail( $post_id = null ) {
./wp-includes/post-thumbnail-template.php:function get_post_thumbnail_id( $post_id = null ) {
./wp-includes/post-thumbnail-template.php:function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) {
./wp-includes/post-thumbnail-template.php:function update_post_thumbnail_cache( $wp_query = null ) {
./wp-includes/post-thumbnail-template.php:function get_the_post_thumbnail( $post_id = null, $size = 'post-thumbnail', $attr = '' ) {
./wp-includes/post.php:function create_initial_post_types() {
./wp-includes/post.php:function get_attached_file( $attachment_id, $unfiltered = false ) {
./wp-includes/post.php:function update_attached_file( $attachment_id, $file ) {
./wp-includes/post.php:function _wp_relative_upload_path( $path ) {
./wp-includes/post.php:function get_children($args = '', $output = OBJECT) {
./wp-includes/post.php:function get_extended($post) {
./wp-includes/post.php:function get_post( $post = null, $output = OBJECT, $filter = 'raw' ) {
./wp-includes/post.php:function get_post_ancestors( $post ) {
./wp-includes/post.php:function get_post_field( $field, $post, $context = 'display' ) {
./wp-includes/post.php:function get_post_mime_type($ID = '') {
./wp-includes/post.php:function get_post_status($ID = '') {
./wp-includes/post.php:function get_post_statuses() {
./wp-includes/post.php:function get_page_statuses() {
./wp-includes/post.php:function register_post_status($post_status, $args = array()) {
./wp-includes/post.php:function get_post_status_object( $post_status ) {
./wp-includes/post.php:function get_post_stati( $args = array(), $output = 'names', $operator = 'and' ) {
./wp-includes/post.php:function is_post_type_hierarchical( $post_type ) {
./wp-includes/post.php:function post_type_exists( $post_type ) {
./wp-includes/post.php:function get_post_type( $post = null ) {
./wp-includes/post.php:function get_post_type_object( $post_type ) {
./wp-includes/post.php:function get_post_types( $args = array(), $output = 'names', $operator = 'and' ) {
./wp-includes/post.php:function register_post_type( $post_type, $args = array() ) {
./wp-includes/post.php:function get_post_type_capabilities( $args ) {
./wp-includes/post.php:function _post_type_meta_capabilities( $capabilities = null ) {
./wp-includes/post.php:function get_post_type_labels( $post_type_object ) {
./wp-includes/post.php:function _get_custom_object_labels( $object, $nohier_vs_hier_defaults ) {
./wp-includes/post.php:function _add_post_type_submenus() {
./wp-includes/post.php:function add_post_type_support( $post_type, $feature ) {
./wp-includes/post.php:function remove_post_type_support( $post_type, $feature ) {
./wp-includes/post.php:function get_all_post_type_supports( $post_type ) {
./wp-includes/post.php:function post_type_supports( $post_type, $feature ) {
./wp-includes/post.php:function set_post_type( $post_id = 0, $post_type = 'post' ) {
./wp-includes/post.php:function get_posts($args = null) {
./wp-includes/post.php:function add_post_meta($post_id, $meta_key, $meta_value, $unique = false) {
./wp-includes/post.php:function delete_post_meta($post_id, $meta_key, $meta_value = '') {
./wp-includes/post.php:function get_post_meta($post_id, $key = '', $single = false) {
./wp-includes/post.php:function update_post_meta($post_id, $meta_key, $meta_value, $prev_value = '') {
./wp-includes/post.php:function delete_post_meta_by_key($post_meta_key) {
./wp-includes/post.php:function get_post_custom( $post_id = 0 ) {
./wp-includes/post.php:function get_post_custom_keys( $post_id = 0 ) {
./wp-includes/post.php:function get_post_custom_values( $key = '', $post_id = 0 ) {
./wp-includes/post.php:function is_sticky( $post_id = 0 ) {
./wp-includes/post.php:function sanitize_post($post, $context = 'display') {
./wp-includes/post.php:function sanitize_post_field($field, $value, $post_id, $context) {
./wp-includes/post.php:function stick_post($post_id) {
./wp-includes/post.php:function unstick_post($post_id) {
./wp-includes/post.php:function _count_posts_cache_key( $type = 'post', $perm = '' ) {
./wp-includes/post.php:function wp_count_posts( $type = 'post', $perm = '' ) {
./wp-includes/post.php:function wp_count_attachments( $mime_type = '' ) {
./wp-includes/post.php:function get_post_mime_types() {
./wp-includes/post.php:function wp_match_mime_types($wildcard_mime_types, $real_mime_types) {
./wp-includes/post.php:function wp_post_mime_type_where($post_mime_types, $table_alias = '') {
./wp-includes/post.php:function wp_delete_post( $postid = 0, $force_delete = false ) {
./wp-includes/post.php:function _reset_front_page_settings_for_post( $post_id ) {
./wp-includes/post.php:function wp_trash_post($post_id = 0) {
./wp-includes/post.php:function wp_untrash_post($post_id = 0) {
./wp-includes/post.php:function wp_trash_post_comments($post = null) {
./wp-includes/post.php:function wp_untrash_post_comments($post = null) {
./wp-includes/post.php:function wp_get_post_categories( $post_id = 0, $args = array() ) {
./wp-includes/post.php:function wp_get_post_tags( $post_id = 0, $args = array() ) {
./wp-includes/post.php:function wp_get_post_terms( $post_id = 0, $taxonomy = 'post_tag', $args = array() ) {
./wp-includes/post.php:function wp_get_recent_posts( $args = array(), $output = ARRAY_A ) {
./wp-includes/post.php:function wp_insert_post( $postarr, $wp_error = false ) {
./wp-includes/post.php:function wp_update_post( $postarr = array(), $wp_error = false ) {
./wp-includes/post.php:function wp_publish_post( $post ) {
./wp-includes/post.php:function check_and_publish_future_post($post_id) {
./wp-includes/post.php:function wp_unique_post_slug( $slug, $post_ID, $post_status, $post_type, $post_parent ) {
./wp-includes/post.php:function _truncate_post_slug( $slug, $length = 200 ) {
./wp-includes/post.php:function wp_add_post_tags($post_id = 0, $tags = '') {
./wp-includes/post.php:function wp_set_post_tags( $post_id = 0, $tags = '', $append = false ) {
./wp-includes/post.php:function wp_set_post_terms( $post_id = 0, $tags = '', $taxonomy = 'post_tag', $append = false ) {
./wp-includes/post.php:function wp_set_post_categories( $post_ID = 0, $post_categories = array(), $append = false ) {
./wp-includes/post.php:function wp_transition_post_status($new_status, $old_status, $post) {
./wp-includes/post.php:function add_ping($post_id, $uri) {
./wp-includes/post.php:function get_enclosed($post_id) {
./wp-includes/post.php:function get_pung($post_id) {
./wp-includes/post.php:function get_to_ping($post_id) {
./wp-includes/post.php:function trackback_url_list($tb_list, $post_id) {
./wp-includes/post.php:function get_all_page_ids() {
./wp-includes/post.php:function get_page( $page, $output = OBJECT, $filter = 'raw') {
./wp-includes/post.php:function get_page_by_path( $page_path, $output = OBJECT, $post_type = 'page' ) {
./wp-includes/post.php:function get_page_by_title( $page_title, $output = OBJECT, $post_type = 'page' ) {
./wp-includes/post.php:function get_page_children($page_id, $pages) {
./wp-includes/post.php:function get_page_hierarchy( &$pages, $page_id = 0 ) {
./wp-includes/post.php:function _page_traverse_name( $page_id, &$children, &$result ){
./wp-includes/post.php:function get_page_uri( $page ) {
./wp-includes/post.php:function get_pages( $args = array() ) {
./wp-includes/post.php:function is_local_attachment($url) {
./wp-includes/post.php:function wp_insert_attachment($object, $file = false, $parent = 0) {
./wp-includes/post.php:function wp_delete_attachment( $post_id, $force_delete = false ) {
./wp-includes/post.php:function wp_get_attachment_metadata( $post_id = 0, $unfiltered = false ) {
./wp-includes/post.php:function wp_update_attachment_metadata( $post_id, $data ) {
./wp-includes/post.php:function wp_get_attachment_url( $post_id = 0 ) {
./wp-includes/post.php:function wp_get_attachment_thumb_file( $post_id = 0 ) {
./wp-includes/post.php:function wp_get_attachment_thumb_url( $post_id = 0 ) {
./wp-includes/post.php:function wp_attachment_is_image( $post_id = 0 ) {
./wp-includes/post.php:function wp_mime_type_icon( $mime = 0 ) {
./wp-includes/post.php:function wp_check_for_changed_slugs($post_id, $post, $post_before) {
./wp-includes/post.php:function get_private_posts_cap_sql( $post_type ) {
./wp-includes/post.php:function get_posts_by_author_sql( $post_type, $full = true, $post_author = null, $public_only = false ) {
./wp-includes/post.php:function get_lastpostdate($timezone = 'server') {
./wp-includes/post.php:function get_lastpostmodified($timezone = 'server') {
./wp-includes/post.php:function _get_last_post_time( $timezone, $field ) {
./wp-includes/post.php:function update_post_cache( &$posts ) {
./wp-includes/post.php:function clean_post_cache( $post ) {
./wp-includes/post.php:function update_post_caches(&$posts, $post_type = 'post', $update_term_cache = true, $update_meta_cache = true) {
./wp-includes/post.php:function update_postmeta_cache($post_ids) {
./wp-includes/post.php:function clean_attachment_cache($id, $clean_terms = false) {
./wp-includes/post.php:function _transition_post_status($new_status, $old_status, $post) {
./wp-includes/post.php:function _future_post_hook( $deprecated, $post ) {
./wp-includes/post.php:function _publish_post_hook($post_id) {
./wp-includes/post.php:function wp_get_post_parent_id( $post_ID ) {
./wp-includes/post.php:function wp_check_post_hierarchy_for_loops( $post_parent, $post_ID ) {
./wp-includes/post.php:function set_post_thumbnail( $post, $thumbnail_id ) {
./wp-includes/post.php:function delete_post_thumbnail( $post ) {
./wp-includes/post.php:function wp_delete_auto_drafts() {
./wp-includes/post.php:function _update_term_count_on_transition_post_status( $new_status, $old_status, $post ) {
./wp-includes/post.php:function _prime_post_caches( $ids, $update_term_cache = true, $update_meta_cache = true ) {
./wp-includes/query.php:function get_query_var( $var, $default = '' ) {
./wp-includes/query.php:function get_queried_object() {
./wp-includes/query.php:function get_queried_object_id() {
./wp-includes/query.php:function set_query_var($var, $value) {
./wp-includes/query.php:function query_posts($query) {
./wp-includes/query.php:function wp_reset_query() {
./wp-includes/query.php:function wp_reset_postdata() {
./wp-includes/query.php:function is_archive() {
./wp-includes/query.php:function is_post_type_archive( $post_types = '' ) {
./wp-includes/query.php:function is_attachment( $attachment = '' ) {
./wp-includes/query.php:function is_author( $author = '' ) {
./wp-includes/query.php:function is_category( $category = '' ) {
./wp-includes/query.php:function is_tag( $tag = '' ) {
./wp-includes/query.php:function is_tax( $taxonomy = '', $term = '' ) {
./wp-includes/query.php:function is_comments_popup() {
./wp-includes/query.php:function is_date() {
./wp-includes/query.php:function is_day() {
./wp-includes/query.php:function is_feed( $feeds = '' ) {
./wp-includes/query.php:function is_comment_feed() {
./wp-includes/query.php:function is_front_page() {
./wp-includes/query.php:function is_home() {
./wp-includes/query.php:function is_month() {
./wp-includes/query.php:function is_page( $page = '' ) {
./wp-includes/query.php:function is_paged() {
./wp-includes/query.php:function is_preview() {
./wp-includes/query.php:function is_robots() {
./wp-includes/query.php:function is_search() {
./wp-includes/query.php:function is_single( $post = '' ) {
./wp-includes/query.php:function is_singular( $post_types = '' ) {
./wp-includes/query.php:function is_time() {
./wp-includes/query.php:function is_trackback() {
./wp-includes/query.php:function is_year() {
./wp-includes/query.php:function is_404() {
./wp-includes/query.php:function is_main_query() {
./wp-includes/query.php:function have_posts() {
./wp-includes/query.php:function in_the_loop() {
./wp-includes/query.php:function rewind_posts() {
./wp-includes/query.php:function the_post() {
./wp-includes/query.php:function have_comments() {
./wp-includes/query.php:function the_comment() {
./wp-includes/query.php:function wp_old_slug_redirect() {
./wp-includes/query.php:function setup_postdata( $post ) {
./wp-includes/revision.php:function _wp_post_revision_fields( $post = null, $autosave = false ) {
./wp-includes/revision.php:function wp_save_post_revision( $post_id ) {
./wp-includes/revision.php:function wp_get_post_autosave( $post_id, $user_id = 0 ) {
./wp-includes/revision.php:function wp_is_post_revision( $post ) {
./wp-includes/revision.php:function wp_is_post_autosave( $post ) {
./wp-includes/revision.php:function _wp_put_post_revision( $post = null, $autosave = false ) {
./wp-includes/revision.php:function wp_get_post_revision(&$post, $output = OBJECT, $filter = 'raw') {
./wp-includes/revision.php:function wp_restore_post_revision( $revision_id, $fields = null ) {
./wp-includes/revision.php:function wp_delete_post_revision( $revision_id ) {
./wp-includes/revision.php:function wp_get_post_revisions( $post_id = 0, $args = null ) {
./wp-includes/revision.php:function wp_revisions_enabled( $post ) {
./wp-includes/revision.php:function wp_revisions_to_keep( $post ) {
./wp-includes/revision.php:function _set_preview($post) {
./wp-includes/revision.php:function _show_post_preview() {
./wp-includes/revision.php:function _wp_preview_terms_filter( $terms, $post_id, $taxonomy ) {
./wp-includes/revision.php:function _wp_get_post_revision_version( $revision ) {
./wp-includes/revision.php:function _wp_upgrade_revisions_of_post( $post, $revisions ) {
./wp-includes/rewrite.php:function add_rewrite_rule($regex, $redirect, $after = 'bottom') {
./wp-includes/rewrite.php:function add_rewrite_tag( $tag, $regex, $query = '' ) {
./wp-includes/rewrite.php:function add_permastruct( $name, $struct, $args = array() ) {
./wp-includes/rewrite.php:function add_feed($feedname, $function) {
./wp-includes/rewrite.php:function flush_rewrite_rules( $hard = true ) {
./wp-includes/rewrite.php:function add_rewrite_endpoint( $name, $places, $query_var = null ) {
./wp-includes/rewrite.php:function _wp_filter_taxonomy_base( $base ) {
./wp-includes/rewrite.php:function url_to_postid($url) {
./wp-includes/rss.php:function fetch_rss ($url) {
./wp-includes/rss.php:function _fetch_remote_file($url, $headers = "" ) {
./wp-includes/rss.php:function _response_to_rss ($resp) {
./wp-includes/rss.php:function init () {
./wp-includes/rss.php:function is_info ($sc) {
./wp-includes/rss.php:function is_success ($sc) {
./wp-includes/rss.php:function is_redirect ($sc) {
./wp-includes/rss.php:function is_error ($sc) {
./wp-includes/rss.php:function is_client_error ($sc) {
./wp-includes/rss.php:function is_server_error ($sc) {
./wp-includes/rss.php:function parse_w3cdtf ( $date_str ) {
./wp-includes/rss.php:function wp_rss( $url, $num_items = -1 ) {
./wp-includes/rss.php:function get_rss ($url, $num_items = 5) { // Like get posts, but for RSS
./wp-includes/script-loader.php:function wp_default_scripts( &$scripts ) {
./wp-includes/script-loader.php:function wp_default_styles( &$styles ) {
./wp-includes/script-loader.php:function wp_prototype_before_jquery( $js_array ) {
./wp-includes/script-loader.php:function wp_just_in_time_script_localization() {
./wp-includes/script-loader.php:function wp_style_loader_src( $src, $handle ) {
./wp-includes/script-loader.php:function print_head_scripts() {
./wp-includes/script-loader.php:function print_footer_scripts() {
./wp-includes/script-loader.php:function _print_scripts() {
./wp-includes/script-loader.php:function wp_print_head_scripts() {
./wp-includes/script-loader.php:function _wp_footer_scripts() {
./wp-includes/script-loader.php:function wp_print_footer_scripts() {
./wp-includes/script-loader.php:function wp_enqueue_scripts() {
./wp-includes/script-loader.php:function print_admin_styles() {
./wp-includes/script-loader.php:function print_late_styles() {
./wp-includes/script-loader.php:function _print_styles() {
./wp-includes/script-loader.php:function script_concat_settings() {
./wp-includes/shortcodes.php:function add_shortcode($tag, $func) {
./wp-includes/shortcodes.php:function remove_shortcode($tag) {
./wp-includes/shortcodes.php:function remove_all_shortcodes() {
./wp-includes/shortcodes.php:function shortcode_exists( $tag ) {
./wp-includes/shortcodes.php:function has_shortcode( $content, $tag ) {
./wp-includes/shortcodes.php:function do_shortcode($content) {
./wp-includes/shortcodes.php:function get_shortcode_regex() {
./wp-includes/shortcodes.php:function do_shortcode_tag( $m ) {
./wp-includes/shortcodes.php:function shortcode_parse_atts($text) {
./wp-includes/shortcodes.php:function shortcode_atts( $pairs, $atts, $shortcode = '' ) {
./wp-includes/shortcodes.php:function strip_shortcodes( $content ) {
./wp-includes/shortcodes.php:function strip_shortcode_tag( $m ) {
./wp-includes/SimplePie/Misc.php:function embed_quicktime(type, bgcolor, width, height, link, placeholder, loop) {
./wp-includes/SimplePie/Misc.php:function embed_flash(bgcolor, width, height, link, loop, type) {
./wp-includes/SimplePie/Misc.php:function embed_flv(width, height, link, placeholder, loop, player) {
./wp-includes/SimplePie/Misc.php:function embed_wmedia(width, height, link) {
./wp-includes/taxonomy.php:function create_initial_taxonomies() {
./wp-includes/taxonomy.php:function get_taxonomies( $args = array(), $output = 'names', $operator = 'and' ) {
./wp-includes/taxonomy.php:function get_object_taxonomies($object, $output = 'names') {
./wp-includes/taxonomy.php:function get_taxonomy( $taxonomy ) {
./wp-includes/taxonomy.php:function taxonomy_exists( $taxonomy ) {
./wp-includes/taxonomy.php:function is_taxonomy_hierarchical($taxonomy) {
./wp-includes/taxonomy.php:function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
./wp-includes/taxonomy.php:function get_taxonomy_labels( $tax ) {
./wp-includes/taxonomy.php:function register_taxonomy_for_object_type( $taxonomy, $object_type) {
./wp-includes/taxonomy.php:function unregister_taxonomy_for_object_type( $taxonomy, $object_type ) {
./wp-includes/taxonomy.php:function get_objects_in_term( $term_ids, $taxonomies, $args = array() ) {
./wp-includes/taxonomy.php:function get_tax_sql( $tax_query, $primary_table, $primary_id_column ) {
./wp-includes/taxonomy.php:function get_term($term, $taxonomy, $output = OBJECT, $filter = 'raw') {
./wp-includes/taxonomy.php:function get_term_by($field, $value, $taxonomy, $output = OBJECT, $filter = 'raw') {
./wp-includes/taxonomy.php:function get_term_children( $term_id, $taxonomy ) {
./wp-includes/taxonomy.php:function get_term_field( $field, $term, $taxonomy, $context = 'display' ) {
./wp-includes/taxonomy.php:function get_term_to_edit( $id, $taxonomy ) {
./wp-includes/taxonomy.php:function get_terms($taxonomies, $args = '') {
./wp-includes/taxonomy.php:function term_exists($term, $taxonomy = '', $parent = 0) {
./wp-includes/taxonomy.php:function term_is_ancestor_of( $term1, $term2, $taxonomy ) {
./wp-includes/taxonomy.php:function sanitize_term($term, $taxonomy, $context = 'display') {
./wp-includes/taxonomy.php:function sanitize_term_field($field, $value, $term_id, $taxonomy, $context) {
./wp-includes/taxonomy.php:function wp_count_terms( $taxonomy, $args = array() ) {
./wp-includes/taxonomy.php:function wp_delete_object_term_relationships( $object_id, $taxonomies ) {
./wp-includes/taxonomy.php:function wp_delete_term( $term, $taxonomy, $args = array() ) {
./wp-includes/taxonomy.php:function wp_delete_category( $cat_ID ) {
./wp-includes/taxonomy.php:function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
./wp-includes/taxonomy.php:function wp_insert_term( $term, $taxonomy, $args = array() ) {
./wp-includes/taxonomy.php:function wp_set_object_terms($object_id, $terms, $taxonomy, $append = false) {
./wp-includes/taxonomy.php:function wp_add_object_terms( $object_id, $terms, $taxonomy ) {
./wp-includes/taxonomy.php:function wp_remove_object_terms( $object_id, $terms, $taxonomy ) {
./wp-includes/taxonomy.php:function wp_unique_term_slug($slug, $term) {
./wp-includes/taxonomy.php:function wp_update_term( $term_id, $taxonomy, $args = array() ) {
./wp-includes/taxonomy.php:function wp_defer_term_counting($defer=null) {
./wp-includes/taxonomy.php:function wp_update_term_count( $terms, $taxonomy, $do_deferred=false ) {
./wp-includes/taxonomy.php:function wp_update_term_count_now( $terms, $taxonomy ) {
./wp-includes/taxonomy.php:function clean_object_term_cache($object_ids, $object_type) {
./wp-includes/taxonomy.php:function clean_term_cache($ids, $taxonomy = '', $clean_taxonomy = true) {
./wp-includes/taxonomy.php:function get_object_term_cache($id, $taxonomy) {
./wp-includes/taxonomy.php:function update_object_term_cache($object_ids, $object_type) {
./wp-includes/taxonomy.php:function update_term_cache($terms, $taxonomy = '') {
./wp-includes/taxonomy.php:function _get_term_hierarchy($taxonomy) {
./wp-includes/taxonomy.php:function _get_term_children($term_id, $terms, $taxonomy) {
./wp-includes/taxonomy.php:function _pad_term_counts(&$terms, $taxonomy) {
./wp-includes/taxonomy.php:function _update_post_term_count( $terms, $taxonomy ) {
./wp-includes/taxonomy.php:function _update_generic_term_count( $terms, $taxonomy ) {
./wp-includes/taxonomy.php:function get_term_link( $term, $taxonomy = '') {
./wp-includes/taxonomy.php:function the_taxonomies($args = array()) {
./wp-includes/taxonomy.php:function get_the_taxonomies($post = 0, $args = array() ) {
./wp-includes/taxonomy.php:function get_post_taxonomies($post = 0) {
./wp-includes/taxonomy.php:function is_object_in_term( $object_id, $taxonomy, $terms = null ) {
./wp-includes/taxonomy.php:function is_object_in_taxonomy($object_type, $taxonomy) {
./wp-includes/taxonomy.php:function get_ancestors($object_id = 0, $object_type = '') {
./wp-includes/taxonomy.php:function wp_get_term_taxonomy_parent_id( $term_id, $taxonomy ) {
./wp-includes/taxonomy.php:function wp_check_term_hierarchy_for_loops( $parent, $term_id, $taxonomy ) {
./wp-includes/template.php:function get_query_template( $type, $templates = array() ) {
./wp-includes/template.php:function get_index_template() {
./wp-includes/template.php:function get_404_template() {
./wp-includes/template.php:function get_archive_template() {
./wp-includes/template.php:function get_post_type_archive_template() {
./wp-includes/template.php:function get_author_template() {
./wp-includes/template.php:function get_category_template() {
./wp-includes/template.php:function get_tag_template() {
./wp-includes/template.php:function get_taxonomy_template() {
./wp-includes/template.php:function get_date_template() {
./wp-includes/template.php:function get_home_template() {
./wp-includes/template.php:function get_front_page_template() {
./wp-includes/template.php:function get_page_template() {
./wp-includes/template.php:function get_paged_template() {
./wp-includes/template.php:function get_search_template() {
./wp-includes/template.php:function get_single_template() {
./wp-includes/template.php:function get_attachment_template() {
./wp-includes/template.php:function get_comments_popup_template() {
./wp-includes/template.php:function locate_template($template_names, $load = false, $require_once = true ) {
./wp-includes/template.php:function load_template( $_template_file, $require_once = true ) {
./wp-includes/theme.php:function wp_get_themes( $args = array() ) {
./wp-includes/theme.php:function wp_get_theme( $stylesheet = null, $theme_root = null ) {
./wp-includes/theme.php:function wp_clean_themes_cache( $clear_update_cache = true ) {
./wp-includes/theme.php:function is_child_theme() {
./wp-includes/theme.php:function get_stylesheet() {
./wp-includes/theme.php:function get_stylesheet_directory() {
./wp-includes/theme.php:function get_stylesheet_directory_uri() {
./wp-includes/theme.php:function get_stylesheet_uri() {
./wp-includes/theme.php:function get_locale_stylesheet_uri() {
./wp-includes/theme.php:function get_template() {
./wp-includes/theme.php:function get_template_directory() {
./wp-includes/theme.php:function get_template_directory_uri() {
./wp-includes/theme.php:function get_theme_roots() {
./wp-includes/theme.php:function register_theme_directory( $directory ) {
./wp-includes/theme.php:function search_theme_directories( $force = false ) {
./wp-includes/theme.php:function get_theme_root( $stylesheet_or_template = false ) {
./wp-includes/theme.php:function get_theme_root_uri( $stylesheet_or_template = false, $theme_root = false ) {
./wp-includes/theme.php:function get_raw_theme_root( $stylesheet_or_template, $skip_cache = false ) {
./wp-includes/theme.php:function locale_stylesheet() {
./wp-includes/theme.php:function preview_theme() {
./wp-includes/theme.php:function _preview_theme_template_filter() {
./wp-includes/theme.php:function _preview_theme_stylesheet_filter() {
./wp-includes/theme.php:function preview_theme_ob_filter( $content ) {
./wp-includes/theme.php:function preview_theme_ob_filter_callback( $matches ) {
./wp-includes/theme.php:function switch_theme( $stylesheet ) {
./wp-includes/theme.php:function validate_current_theme() {
./wp-includes/theme.php:function get_theme_mods() {
./wp-includes/theme.php:function get_theme_mod( $name, $default = false ) {
./wp-includes/theme.php:function set_theme_mod( $name, $value ) {
./wp-includes/theme.php:function remove_theme_mod( $name ) {
./wp-includes/theme.php:function remove_theme_mods() {
./wp-includes/theme.php:function get_header_textcolor() {
./wp-includes/theme.php:function header_textcolor() {
./wp-includes/theme.php:function display_header_text() {
./wp-includes/theme.php:function get_header_image() {
./wp-includes/theme.php:function _get_random_header_data() {
./wp-includes/theme.php:function get_random_header_image() {
./wp-includes/theme.php:function is_random_header_image( $type = 'any' ) {
./wp-includes/theme.php:function header_image() {
./wp-includes/theme.php:function get_uploaded_header_images() {
./wp-includes/theme.php:function get_custom_header() {
./wp-includes/theme.php:function register_default_headers( $headers ) {
./wp-includes/theme.php:function unregister_default_headers( $header ) {
./wp-includes/theme.php:function get_background_image() {
./wp-includes/theme.php:function background_image() {
./wp-includes/theme.php:function get_background_color() {
./wp-includes/theme.php:function background_color() {
./wp-includes/theme.php:function _custom_background_cb() {
./wp-includes/theme.php:function add_editor_style( $stylesheet = 'editor-style.css' ) {
./wp-includes/theme.php:function remove_editor_styles() {
./wp-includes/theme.php:function add_theme_support( $feature ) {
./wp-includes/theme.php:function _custom_header_background_just_in_time() {
./wp-includes/theme.php:function get_theme_support( $feature ) {
./wp-includes/theme.php:function remove_theme_support( $feature ) {
./wp-includes/theme.php:function _remove_theme_support( $feature ) {
./wp-includes/theme.php:function current_theme_supports( $feature ) {
./wp-includes/theme.php:function require_if_theme_supports( $feature, $include ) {
./wp-includes/theme.php:function _delete_attachment_theme_mod( $id ) {
./wp-includes/theme.php:function check_theme_switched() {
./wp-includes/theme.php:function _wp_customize_include() {
./wp-includes/theme.php:function _wp_customize_loader_settings() {
./wp-includes/theme.php:function wp_customize_url( $stylesheet = null ) {
./wp-includes/theme.php:function wp_customize_support_script() {
./wp-includes/update.php:function wp_version_check( $extra_stats = array(), $force_check = false ) {
./wp-includes/update.php:function wp_update_plugins( $extra_stats = array() ) {
./wp-includes/update.php:function wp_update_themes( $extra_stats = array() ) {
./wp-includes/update.php:function wp_maybe_auto_update() {
./wp-includes/update.php:function wp_get_translation_updates() {
./wp-includes/update.php:function wp_get_update_data() {
./wp-includes/update.php:function _maybe_update_core() {
./wp-includes/update.php:function _maybe_update_plugins() {
./wp-includes/update.php:function _maybe_update_themes() {
./wp-includes/update.php:function wp_schedule_update_checks() {
./wp-includes/user.php:function wp_signon( $credentials = array(), $secure_cookie = '' ) {
./wp-includes/user.php:function wp_authenticate_username_password($user, $username, $password) {
./wp-includes/user.php:function wp_authenticate_cookie($user, $username, $password) {
./wp-includes/user.php:function wp_authenticate_spam_check( $user ) {
./wp-includes/user.php:function wp_validate_logged_in_cookie( $user_id ) {
./wp-includes/user.php:function count_user_posts($userid) {
./wp-includes/user.php:function count_many_users_posts( $users, $post_type = 'post', $public_only = false ) {
./wp-includes/user.php:function get_current_user_id() {
./wp-includes/user.php:function get_user_option( $option, $user = 0, $deprecated = '' ) {
./wp-includes/user.php:function update_user_option( $user_id, $option_name, $newvalue, $global = false ) {
./wp-includes/user.php:function delete_user_option( $user_id, $option_name, $global = false ) {
./wp-includes/user.php:function get_users( $args = array() ) {
./wp-includes/user.php:function get_blogs_of_user( $user_id, $all = false ) {
./wp-includes/user.php:function is_user_member_of_blog( $user_id = 0, $blog_id = 0 ) {
./wp-includes/user.php:function add_user_meta($user_id, $meta_key, $meta_value, $unique = false) {
./wp-includes/user.php:function delete_user_meta($user_id, $meta_key, $meta_value = '') {
./wp-includes/user.php:function get_user_meta($user_id, $key = '', $single = false) {
./wp-includes/user.php:function update_user_meta($user_id, $meta_key, $meta_value, $prev_value = '') {
./wp-includes/user.php:function count_users($strategy = 'time') {
./wp-includes/user.php:function setup_userdata($for_user_id = '') {
./wp-includes/user.php:function wp_dropdown_users( $args = '' ) {
./wp-includes/user.php:function sanitize_user_field($field, $value, $user_id, $context) {
./wp-includes/user.php:function update_user_caches($user) {
./wp-includes/user.php:function clean_user_cache( $user ) {
./wp-includes/user.php:function username_exists( $username ) {
./wp-includes/user.php:function email_exists( $email ) {
./wp-includes/user.php:function validate_username( $username ) {
./wp-includes/user.php:function wp_insert_user( $userdata ) {
./wp-includes/user.php:function wp_update_user($userdata) {
./wp-includes/user.php:function wp_create_user($username, $password, $email = '') {
./wp-includes/user.php:function _get_additional_user_keys( $user ) {
./wp-includes/user.php:function wp_get_user_contact_methods( $user = null ) {
./wp-includes/user.php:function _wp_get_user_contactmethods( $user = null ) {
./wp-includes/user.php:function check_password_reset_key($key, $login) {
./wp-includes/user.php:function reset_password( $user, $new_pass ) {
./wp-includes/user.php:function register_new_user( $user_login, $user_email ) {
./wp-includes/vars.php:function wp_is_mobile() {
./wp-includes/widgets.php:function register_widget($widget_class) {
./wp-includes/widgets.php:function unregister_widget($widget_class) {
./wp-includes/widgets.php:function register_sidebars($number = 1, $args = array()) {
./wp-includes/widgets.php:function register_sidebar($args = array()) {
./wp-includes/widgets.php:function unregister_sidebar( $name ) {
./wp-includes/widgets.php:function wp_register_sidebar_widget($id, $name, $output_callback, $options = array()) {
./wp-includes/widgets.php:function wp_widget_description( $id ) {
./wp-includes/widgets.php:function wp_sidebar_description( $id ) {
./wp-includes/widgets.php:function wp_unregister_sidebar_widget($id) {
./wp-includes/widgets.php:function wp_register_widget_control($id, $name, $control_callback, $options = array()) {
./wp-includes/widgets.php:function _register_widget_update_callback($id_base, $update_callback, $options = array()) {
./wp-includes/widgets.php:function _register_widget_form_callback($id, $name, $form_callback, $options = array()) {
./wp-includes/widgets.php:function wp_unregister_widget_control($id) {
./wp-includes/widgets.php:function dynamic_sidebar($index = 1) {
./wp-includes/widgets.php:function is_active_widget($callback = false, $widget_id = false, $id_base = false, $skip_inactive = true) {
./wp-includes/widgets.php:function is_dynamic_sidebar() {
./wp-includes/widgets.php:function is_active_sidebar( $index ) {
./wp-includes/widgets.php:function wp_get_sidebars_widgets($deprecated = true) {
./wp-includes/widgets.php:function wp_set_sidebars_widgets( $sidebars_widgets ) {
./wp-includes/widgets.php:function wp_get_widget_defaults() {
./wp-includes/widgets.php:function wp_convert_widget_settings($base_name, $option_name, $settings) {
./wp-includes/widgets.php:function the_widget($widget, $instance = array(), $args = array()) {
./wp-includes/widgets.php:function _get_widget_id_base($id) {
./wp-includes/widgets.php:function _wp_sidebars_changed() {
./wp-includes/widgets.php:function retrieve_widgets( $theme_changed = false ) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment