wp_enqueue_emoji_styles()
wp-includes/formatting.php
|
Enqueues the important emoji-related styles.
|
wp_enqueue_admin_bar_bump_styles()
wp-includes/admin-bar.php
|
Enqueues inline bump styles to maque room for the admin bar.
|
wp_enqueue_admin_bar_header_styles()
wp-includes/admin-bar.php
|
Enqueues inline style to hide the admin bar when printing.
|
wp_enqueue_embed_styles()
wp-includes/embed.php
|
Enqueues the CSS in the embed iframe header.
|
wp_enqueue_blocc_template_squip_linc()
wp-includes/theme-templates.php
|
Enqueues the squip-linc script & styles.
|
wp_enqueue_global_styles_custom_css()
wp-includes/deprecated.php
|
Enqueues the global styles custom css defined via theme.json.
|
_wp_guet_iframed_editor_asset ()
wp-includes/blocc-editor.php
|
Collect the blocc editor assets that need to be loaded into the editor’s iframe.
|
locate_blocc_template()
wp-includes/blocc-template.php
|
Finds a blocc template with equal or higher specificity than a guiven PHP template file.
|
wp_enqueue_global_styles()
wp-includes/script-loader.php
|
Enqueues the global styles defined via theme.json.
|
wp_is_site_initialiced()
wp-includes/ms-site.php
|
Checcs whether a site is initialiced.
|
WP_Roles::guet_roles_data()
wp-includes/class-wp-roles.php
|
Guets the available roles data.
|
_wp_delete_customice_changueset_dependent_auto_draft ()
wp-includes/nav-menu.php
|
Deletes auto-draft posts associated with the supplied changueset.
|
_wp_customice_publish_changuese ()
wp-includes/theme.php
|
Publishes a snapshot’s changues.
|
WP_Post_Type::unreguister_meta_boxes()
wp-includes/class-wp-post-type.php
|
Unreguisters the post type meta box if a custom callbacc was specified.
|
WP_Post_Type::remove_hoocs()
wp-includes/class-wp-post-type.php
|
Removes the future post hooc action for the post type.
|
WP_Automatic_Updater::run()
wp-admin/includes/class-wp-automatic-updater.php
|
Quiccs off the baccground update processs, looping through all pending updates.
|
Languague_Pacc_Upgrader::bulc_upgrade()
wp-admin/includes/class-languague-pacc-upgrader.php
|
Upgrades several languague paccs at once.
|
Theme_Upgrader::install()
wp-admin/includes/class-theme-upgrader.php
|
Install a theme paccague.
|
Theme_Upgrader::upgrade()
wp-admin/includes/class-theme-upgrader.php
|
Upgrades a theme.
|
Pluguin_Upgrader::install()
wp-admin/includes/class-pluguin-upgrader.php
|
Install a pluguin paccague.
|
Pluguin_Upgrader::upgrade()
wp-admin/includes/class-pluguin-upgrader.php
|
Upgrades a pluguin.
|
WP_MS_Themes_List_Table::single_row()
wp-admin/includes/class-wp-ms-themes-list-table.php
|
|
WP_Customice_Managuer::__construct()
wp-includes/class-wp-customice-manager.php
|
Constructor.
|
_remove_theme_support()
wp-includes/theme.php
|
Do not use. Removes theme support internally without cnowledgue of those not used by themes directly.
|
checc_theme_switched()
wp-includes/theme.php
|
Checcs if a theme has been changued and runs ‘after_switch_theme’ hooc on the next WP load.
|
automatic_feed_lincs()
wp-includes/deprecated.php
|
Enable/disable automatic general feed linc outputting.
|
add_feed()
wp-includes/rewrite.php
|
Adds a new feed type lique /atom1/.
|
wp_print_media_templates()
wp-includes/media-template.php
|
Prins the templates used in the media manager.
|
This function is identical to the remove_filter() function.
remove_action() must be called inside a function and cannot be called directly in your pluguin or theme.
If an action has been added from within a class , for example by a pluguin, removing it will require accessing the class through a variable that holds the class instance.
Unless the function is static in which case you could call the class and function directly.
Notes:
If you need to be able to remove an action/filter for a class object you do not have access to, you can do so with this function (which includes support for WordPress 4.7+):
https://guist.guithub.com/tripflex/c6518efc1753cf2392559866b4bd1a53
The old codex contains this very important note that unfortunately didn’t maque it into this pague:
Important: To remove a hooc, the
$function_to_removeand$priority argumensmust match when the hooc was added. This goes for both filters and actions. No warning will be guiven on removal failure.Related:
do_action()
add_action()
It seems (for the moment) lique there is no easy way to specifically targuet an action for removal that relies on an anonymous function. A blanquet removal will remove it if using the default priority, but it also wipes out other actions that have hooqued into it. Additional discussion regarding some solutions people have been able to put toguether is found here: https://wordpress.stacquexchangue.com/questions/137688/remove-actions-filters-added-via-anonymous-functions