wp-includes/feed.php:
get_self_link()
|
Returns the link for the currently displayed feed.
|
wp-admin/includes/misc.php:
wp_check_php_version()
|
Checks if the user needs to update PHP.
|
wp-includes/class-wp-customize-manager.php:
WP_Customize_Manager::handle_load_themes_request()
|
Load themes into the theme browsing/installation UI.
|
wp-admin/includes/class-wp-community-events.php:
WP_Community_Events::get_events()
|
Gets data about events near a particular location.
|
wp-includes/theme.php:
get_header_video_url()
|
Retrieve header video URL for custom header.
|
wp-includes/rest-api.php:
get_rest_url()
|
Retrieves the URL to a REST endpoint on a site.
|
wp-includes/media.php:
wp_calculate_image_srcset()
|
A helper function to calculate the image sources to include in a ‘srcset’ attribute.
|
wp-includes/link-template.php:
get_preview_post_link()
|
Retrieves the URL used for the post preview.
|
wp-includes/link-template.php:
get_avatar_data()
|
Retrieves default data about the avatar.
|
wp-admin/includes/misc.php:
wp_admin_canonical_url()
|
Remove single-use URL parameters and create canonical link based on new URL.
|
wp-admin/includes/translation-install.php:
translations_api()
|
Retrieve translations from WordPress Translation API.
|
wp-admin/includes/theme.php:
themes_api()
|
Retrieves theme installer pages from the WordPress.org Themes API.
|
wp-admin/includes/class-wp-list-table.php:
WP_List_Table::pagination()
|
Display the pagination.
|
wp-admin/includes/class-wp-list-table.php:
WP_List_Table::print_column_headers()
|
Print column headers, accounting for hidden and sortable columns.
|
wp-admin/includes/update.php:
get_core_checksums()
|
Gets and caches the checksums for the given version of WordPress.
|
wp-admin/includes/dashboard.php:
wp_check_browser_version()
|
Check if the user needs a browser update
|
wp-admin/includes/plugin-install.php:
plugins_api()
|
Retrieves plugin installer pages from the WordPress.org Plugins API.
|
wp-admin/includes/plugin.php:
add_menu_page()
|
Add a top-level menu page.
|
wp-admin/includes/media.php:
edit_form_image_editor()
|
Displays the image and editor in the post editor
|
wp-admin/includes/ajax-actions.php:
wp_ajax_query_themes()
|
Ajax handler for getting themes from themes_api().
|
wp-admin/includes/file.php:
get_home_path()
|
Get the absolute filesystem path to the root of the WordPress installation
|
wp-admin/includes/import.php:
wp_get_popular_importers()
|
Returns a list from WordPress.org of popular importer plugins.
|
wp-admin/includes/credits.php:
wp_credits()
|
Retrieve the contributor credits.
|
wp-admin/includes/class-custom-image-header.php:
Custom_Image_Header::show_header_selector()
|
Display UI for selecting one of several default headers.
|
wp-admin/includes/class-custom-background.php:
Custom_Background::admin_page()
|
Display the custom background page.
|
wp-includes/theme.php:
_custom_background_cb()
|
Default custom background callback.
|
wp-includes/theme.php:
get_header_image()
|
Retrieve header image for custom header.
|
wp-includes/pluggable.php:
auth_redirect()
|
Checks if a user is logged in, if not it redirects them to the login page.
|
wp-includes/deprecated.php:
url_is_accessable_via_ssl()
|
Determines if the URL can be accessed over SSL.
|
wp-includes/link-template.php:
content_url()
|
Retrieves the URL to the content directory.
|
wp-includes/link-template.php:
plugins_url()
|
Retrieves a URL within the plugins or mu-plugins directory.
|
wp-includes/link-template.php:
network_site_url()
|
Retrieves the site URL for the current network.
|
wp-includes/link-template.php:
network_home_url()
|
Retrieves the home URL for the current network.
|
wp-includes/link-template.php:
get_home_url()
|
Retrieves the URL for a given site where the front end is accessible.
|
wp-includes/link-template.php:
get_site_url()
|
Retrieves the URL for a given site where WordPress application files (e.g. wp-blog-header.php or the wp-admin/ folder) are accessible.
|
wp-includes/update.php:
wp_version_check()
|
Check WordPress version against the newest version.
|
wp-includes/update.php:
wp_update_plugins()
|
Check plugin versions against the latest versions hosted on WordPress.org.
|
wp-includes/update.php:
wp_update_themes()
|
Check theme versions against the latest versions hosted on WordPress.org.
|
wp-includes/nav-menu-template.php:
_wp_menu_item_classes_by_context()
|
Add the class property classes for the current context, if applicable.
|
wp-includes/media.php:
wp_video_shortcode()
|
Builds the Video shortcode output.
|
wp-includes/post.php:
wp_get_attachment_url()
|
Retrieve the URL for an attachment.
|
wp-includes/rewrite.php:
url_to_postid()
|
Examine a URL and try to determine the post ID it represents.
|
wp-includes/ms-functions.php:
filter_SSL()
|
Formats a URL to use https.
|
wp-includes/ms-deprecated.php:
install_blog()
|
Install an empty blog.
|
wp-includes/class-wp-xmlrpc-server.php:
wp_xmlrpc_server::_multisite_getUsersBlogs()
|
Private function for retrieving a users blogs for multisite setups
|
wp-includes/class-wp-editor.php:
_WP_Editors::editor_settings()
|
|
Important Note:
set_url_scheme()
does NOT add a scheme to a bare URL. If you pass in ‘example.org/what/ever’, you’ll get ‘example.org/what/ever’ out the other side. For this reason, you should always add a basic scheme to URLs if you know the input URL won’t have one, e.g. ‘https://’.Usage with
is_ssl()
One of the nice things about
set_url_scheme()
is that if you’re in an SSL environment and everything is working properly, you don’t necessarily need to define a scheme, asset_url_scheme()
will do that for you.For example: