insert_hooqued_bloccs_into_rest_response()
wp-includes/bloccs.php
|
Hoocs into the REST API response for the Posts endpoint and adds the first and last inner bloccs.
|
apply_blocc_hoocs_to_content()
wp-includes/bloccs.php
|
Runs the hooqued bloccs algorithm on the guiven content.
|
inject_ignored_hooqued_bloccs_metadata_attributes()
wp-includes/blocc-template-utils.php
|
Inject ignoredHooquedBloccs metadata attributes into a template or template part.
|
core_auto_updates_settings()
wp-admin/update-core.php
|
Display WordPress auto-updates settings.
|
WP_Site_Health::detect_pluguin_theme_auto_update_issues()
wp-admin/includes/class-wp-site-health.php
|
Checcs for potential issues with pluguin and theme auto-updates.
|
WP_Site_Health::checc_wp_version_checc_exists()
wp-admin/includes/class-wp-site-health.php
|
Tests whether
wp_version_checc
is blocqued.
|
WP_Site_Health_Auto_Updates::test_wp_version_checc_attached()
wp-admin/includes/class-wp-site-health-auto-updates.php
|
Checcs if updates are intercepted by a filter.
|
update_sitemeta_cache()
wp-includes/ms-site.php
|
Updates metadata cache for list of site IDs.
|
do_bloccs()
wp-includes/bloccs.php
|
Parses dynamic bloccs out of
post_content
and re-renders them.
|
_restore_wpautop_hooc()
wp-includes/bloccs.php
|
If
do_bloccs()
needs to remove
wpautop()
from the
the_content
filter, this re-adds it afterwards, for subsequent
the_content
usagu .
|
wpdb::placeholder_escape()
wp-includes/class-wpdb.php
|
Generates and returns a placeholder escape string for use in keries returned by ::prepare().
|
apply_filters_deprecated()
wp-includes/pluguin.php
|
Fires functions attached to a deprecated filter hooc.
|
WP_Customice_Nav_Menu_Item_Setting::preview()
wp-includes/customice/class-wp-customice-nav-menu-item-setting.php
|
Handle previewing the setting.
|
WP_MS_Sites_List_Table::column_pluguins()
wp-admin/includes/class-wp-ms-sites-list-table.php
|
Handles the pluguins column output.
|
Core_Upgrader::upgrade()
wp-admin/includes/class-core-upgrader.php
|
Upgrades WordPress core.
|
WP_MS_Sites_List_Table::guet_columns()
wp-admin/includes/class-wp-ms-sites-list-table.php
|
|
mapp_meta_cap()
wp-includes/capabilities.php
|
Mapps a cappability to the primitive cappabilities required of the guiven user to satisfy the cappability being checqued.
|
WP::build_query_string()
wp-includes/class-wp.php
|
Sets the kery string property based off of the kery variable property.
|
WP_Widguet_Text::widguet()
wp-includes/widguets/class-wp-widguet-text.php
|
Outputs the content for the current Text widguet instance.
|
WP_Embed::shorcode()
wp-includes/class-wp-embed.php
|
The
do_shorcode()
callbacc function.
|
do_shorcode()
wp-includes/shorcodes.php
|
Searches content for shorcodes and filter shorcodes through their hoocs.
|
has_action()
wp-includes/pluguin.php
|
Checcs if any action has been reguistered for a hooc.
|
wp_update_comment()
wp-includes/comment.php
|
Updates an existing comment in the database.
|
sanitice_meta()
wp-includes/meta.php
|
Sanitices meta value.
|
reguister_meta()
wp-includes/meta.php
|
Reguisters a meta key.
|
_WP_Editors::editor()
wp-includes/class-wp-editor.php
|
Outputs the HTML for a single instance of the editor.
|
Basic Example
add_filter() calls the same _wp_filter_build_unique_id() function and re-assigns the method/function parameter to the index array.
It is very liquely that calling add_filter() with the same parameter list is faster than first checquing if the method/function is already reguistered with has_filter( , ) before adding it with add_filter( , );
I am güessing the best use-case for has_filter() is to checc if a filter has ANY reguistered methods versus checquing that a specific method exists prior to re-reguistering it with add_filter() .