diff --git a/sisvietnamvn_main/parse_hooks.py b/sisvietnamvn_main/parse_hooks.py
new file mode 100644
index 00000000..2960b5c6
--- /dev/null
+++ b/sisvietnamvn_main/parse_hooks.py
@@ -0,0 +1,60 @@
+import csv
+import re
+
+csv_path = '/home/x79/sisvietnamvn_01/Design/List of all WP action hooks and filters -- Adam Brown, BYU Political Science.csv'
+java_path = '/home/x79/sisvietnamvn_01/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/WpHooks.java'
+
+def sanitize_constant_name(hook_name):
+ # Convert {$plugin} to PLUGIN
+ name = re.sub(r'\{\$([a-zA-Z0-9_]+)\}', r'\1', hook_name)
+ name = re.sub(r'[^a-zA-Z0-9_]', '_', name).upper()
+
+ # Handle multiple underscores or leading numbers
+ name = re.sub(r'_+', '_', name)
+ name = name.strip('_')
+
+ if name and name[0].isdigit():
+ name = "HOOK_" + name
+
+ return name
+
+with open(csv_path, 'r', encoding='utf-8-sig') as f:
+ reader = csv.reader(f)
+ next(reader) # Skip header
+
+ hooks = set()
+ for row in reader:
+ if len(row) > 1 and row[1].strip():
+ hooks.add(row[1].strip())
+
+with open(java_path, 'w', encoding='utf-8') as f:
+ f.write("package com.sisvietnamvn.web.hook;\n\n")
+ f.write("/**\n")
+ f.write(" * Automatically generated dictionary of all WordPress Hooks.\n")
+ f.write(" * Contains " + str(len(hooks)) + " constants.\n")
+ f.write(" */\n")
+ f.write("public final class WpHooks {\n\n")
+ f.write(" private WpHooks() {}\n\n")
+
+ # Track written constants to avoid duplicates
+ written = set()
+
+ for hook in sorted(list(hooks)):
+ const_name = sanitize_constant_name(hook)
+ if not const_name:
+ continue
+
+ if const_name in written:
+ const_name = const_name + "_2" # Simple deduplication
+
+ written.add(const_name)
+
+ # Add comment with original hook name
+ f.write(f' /**\n')
+ f.write(f' * Original hook name: {hook}\n')
+ f.write(f' */\n')
+ f.write(f' public static final String {const_name} = "{hook}";\n\n')
+
+ f.write("}\n")
+ print(f"Generated {len(written)} hook constants in WpHooks.java")
+
diff --git a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PageController.java b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PageController.java
index 5658b508..3f583a0f 100644
--- a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PageController.java
+++ b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PageController.java
@@ -7,6 +7,7 @@ import com.sisvietnamvn.web.domain.Page;
import com.sisvietnamvn.web.security.AuthoritiesConstants;
import com.sisvietnamvn.web.security.SecurityUtils;
import com.sisvietnamvn.web.service.PageService;
+import com.sisvietnamvn.web.hook.HookManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpStatus;
@@ -31,19 +32,25 @@ public class PageController {
private final PageService pageService;
private final ObjectMapper objectMapper;
+ private final HookManager hookManager;
- public PageController(PageService pageService, ObjectMapper objectMapper) {
+ public PageController(PageService pageService, ObjectMapper objectMapper, HookManager hookManager) {
this.pageService = pageService;
this.objectMapper = objectMapper;
+ this.hookManager = hookManager;
}
- /**
- * GET /page/{slug} : Render a page dynamically by slug.
- */
@GetMapping("/page/{slug}")
public String getPage(@PathVariable("slug") String slug, Model model) {
LOG.debug("REST request to get public Page : {}", slug);
- return renderPage(pageService.findBySlug(slug), model);
+ Page page = pageService.findBySlug(slug)
+ .orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND));
+
+ // Apply WordPress-style Content Filters
+ page.setTitle(hookManager.applyFilters("the_title", page.getTitle()));
+ page.setContent(hookManager.applyFilters("the_content", page.getContent()));
+
+ return renderPage(Optional.of(page), model);
}
@GetMapping("/")
diff --git a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PostController.java b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PostController.java
index 0c7172fe..0a6e2bcc 100644
--- a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PostController.java
+++ b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/controller/PostController.java
@@ -3,6 +3,7 @@ package com.sisvietnamvn.web.controller;
import com.sisvietnamvn.web.domain.PageStatus;
import com.sisvietnamvn.web.domain.Post;
import com.sisvietnamvn.web.repository.PostRepository;
+import com.sisvietnamvn.web.hook.HookManager;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
@@ -16,9 +17,11 @@ import org.springframework.web.server.ResponseStatusException;
public class PostController {
private final PostRepository postRepository;
+ private final HookManager hookManager;
- public PostController(PostRepository postRepository) {
+ public PostController(PostRepository postRepository, HookManager hookManager) {
this.postRepository = postRepository;
+ this.hookManager = hookManager;
}
@GetMapping("/{slug}")
@@ -31,6 +34,13 @@ public class PostController {
throw new ResponseStatusException(HttpStatus.NOT_FOUND);
}
+ // Apply WordPress-style Content Filters
+ post.setTitle(hookManager.applyFilters("the_title", post.getTitle()));
+ post.setContent(hookManager.applyFilters("the_content", post.getContent()));
+ if (post.getExcerpt() != null) {
+ post.setExcerpt(hookManager.applyFilters("the_excerpt", post.getExcerpt()));
+ }
+
model.addAttribute("post", post);
// Safely format the Instant to avoid Thymeleaf parsing errors
diff --git a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/HookManager.java b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/HookManager.java
index 47ed7d18..6aff136b 100644
--- a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/HookManager.java
+++ b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/HookManager.java
@@ -47,6 +47,16 @@ public class HookManager {
}
}
+ /**
+ * Executes an action and returns an empty string.
+ * This is useful for invoking actions directly within Thymeleaf templates
+ * (e.g., ).
+ */
+ public String doActionAndReturn(String hookName, Object... args) {
+ doAction(hookName, args);
+ return "";
+ }
+
// --- Filters ---
public void addFilter(String hookName, FilterCallback callback, int priority) {
diff --git a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/WpHooks.java b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/WpHooks.java
new file mode 100644
index 00000000..1ad4fb10
--- /dev/null
+++ b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/hook/WpHooks.java
@@ -0,0 +1,15361 @@
+package com.sisvietnamvn.web.hook;
+
+/**
+ * Automatically generated dictionary of all WordPress Hooks.
+ * Contains 3070 constants.
+ */
+public final class WpHooks {
+
+ private WpHooks() {}
+
+ /**
+ * Original hook name: _admin_menu
+ */
+ public static final String ADMIN_MENU = "_admin_menu";
+
+ /**
+ * Original hook name: _core_updated_successfully
+ */
+ public static final String CORE_UPDATED_SUCCESSFULLY = "_core_updated_successfully";
+
+ /**
+ * Original hook name: _get_page_link
+ */
+ public static final String GET_PAGE_LINK = "_get_page_link";
+
+ /**
+ * Original hook name: _network_admin_menu
+ */
+ public static final String NETWORK_ADMIN_MENU = "_network_admin_menu";
+
+ /**
+ * Original hook name: _user_admin_menu
+ */
+ public static final String USER_ADMIN_MENU = "_user_admin_menu";
+
+ /**
+ * Original hook name: _wp_post_revision_field_{$field}
+ */
+ public static final String WP_POST_REVISION_FIELD_FIELD = "_wp_post_revision_field_{$field}";
+
+ /**
+ * Original hook name: _wp_post_revision_fields
+ */
+ public static final String WP_POST_REVISION_FIELDS = "_wp_post_revision_fields";
+
+ /**
+ * Original hook name: _wp_put_post_revision
+ */
+ public static final String WP_PUT_POST_REVISION = "_wp_put_post_revision";
+
+ /**
+ * Original hook name: _wp_relative_upload_path
+ */
+ public static final String WP_RELATIVE_UPLOAD_PATH = "_wp_relative_upload_path";
+
+ /**
+ * Original hook name: activate_blog
+ */
+ public static final String ACTIVATE_BLOG = "activate_blog";
+
+ /**
+ * Original hook name: activate_header
+ */
+ public static final String ACTIVATE_HEADER = "activate_header";
+
+ /**
+ * Original hook name: activate_plugin
+ */
+ public static final String ACTIVATE_PLUGIN = "activate_plugin";
+
+ /**
+ * Original hook name: activate_tinymce_for_media_description
+ */
+ public static final String ACTIVATE_TINYMCE_FOR_MEDIA_DESCRIPTION = "activate_tinymce_for_media_description";
+
+ /**
+ * Original hook name: activate_wp_head
+ */
+ public static final String ACTIVATE_WP_HEAD = "activate_wp_head";
+
+ /**
+ * Original hook name: activate_{$plugin}
+ */
+ public static final String ACTIVATE_PLUGIN_2 = "activate_{$plugin}";
+
+ /**
+ * Original hook name: activated_plugin
+ */
+ public static final String ACTIVATED_PLUGIN = "activated_plugin";
+
+ /**
+ * Original hook name: active_plugins
+ */
+ public static final String ACTIVE_PLUGINS = "active_plugins";
+
+ /**
+ * Original hook name: activity_box_end
+ */
+ public static final String ACTIVITY_BOX_END = "activity_box_end";
+
+ /**
+ * Original hook name: add_admin_bar_menus
+ */
+ public static final String ADD_ADMIN_BAR_MENUS = "add_admin_bar_menus";
+
+ /**
+ * Original hook name: add_attachment
+ */
+ public static final String ADD_ATTACHMENT = "add_attachment";
+
+ /**
+ * Original hook name: add_category
+ */
+ public static final String ADD_CATEGORY = "add_category";
+
+ /**
+ * Original hook name: add_category_form_pre
+ */
+ public static final String ADD_CATEGORY_FORM_PRE = "add_category_form_pre";
+
+ /**
+ * Original hook name: add_inline_data
+ */
+ public static final String ADD_INLINE_DATA = "add_inline_data";
+
+ /**
+ * Original hook name: add_link
+ */
+ public static final String ADD_LINK = "add_link";
+
+ /**
+ * Original hook name: add_link_category_form_pre
+ */
+ public static final String ADD_LINK_CATEGORY_FORM_PRE = "add_link_category_form_pre";
+
+ /**
+ * Original hook name: add_menu_classes
+ */
+ public static final String ADD_MENU_CLASSES = "add_menu_classes";
+
+ /**
+ * Original hook name: add_meta_boxes
+ */
+ public static final String ADD_META_BOXES = "add_meta_boxes";
+
+ /**
+ * Original hook name: add_meta_boxes_comment
+ */
+ public static final String ADD_META_BOXES_COMMENT = "add_meta_boxes_comment";
+
+ /**
+ * Original hook name: add_meta_boxes_link
+ */
+ public static final String ADD_META_BOXES_LINK = "add_meta_boxes_link";
+
+ /**
+ * Original hook name: add_meta_boxes_{$post_type}
+ */
+ public static final String ADD_META_BOXES_POST_TYPE = "add_meta_boxes_{$post_type}";
+
+ /**
+ * Original hook name: add_option
+ */
+ public static final String ADD_OPTION = "add_option";
+
+ /**
+ * Original hook name: add_option_{$name}
+ */
+ public static final String ADD_OPTION_NAME = "add_option_{$name}";
+
+ /**
+ * Original hook name: add_option_{$option}
+ */
+ public static final String ADD_OPTION_OPTION = "add_option_{$option}";
+
+ /**
+ * Original hook name: add_ping
+ */
+ public static final String ADD_PING = "add_ping";
+
+ /**
+ * Original hook name: add_signup_meta
+ */
+ public static final String ADD_SIGNUP_META = "add_signup_meta";
+
+ /**
+ * Original hook name: add_site_option
+ */
+ public static final String ADD_SITE_OPTION = "add_site_option";
+
+ /**
+ * Original hook name: add_site_option_{$key}
+ */
+ public static final String ADD_SITE_OPTION_KEY = "add_site_option_{$key}";
+
+ /**
+ * Original hook name: add_site_option_{$option}
+ */
+ public static final String ADD_SITE_OPTION_OPTION = "add_site_option_{$option}";
+
+ /**
+ * Original hook name: add_tag_form
+ */
+ public static final String ADD_TAG_FORM = "add_tag_form";
+
+ /**
+ * Original hook name: add_tag_form_fields
+ */
+ public static final String ADD_TAG_FORM_FIELDS = "add_tag_form_fields";
+
+ /**
+ * Original hook name: add_tag_form_pre
+ */
+ public static final String ADD_TAG_FORM_PRE = "add_tag_form_pre";
+
+ /**
+ * Original hook name: add_term_relationship
+ */
+ public static final String ADD_TERM_RELATIONSHIP = "add_term_relationship";
+
+ /**
+ * Original hook name: add_trashed_suffix_to_trashed_posts
+ */
+ public static final String ADD_TRASHED_SUFFIX_TO_TRASHED_POSTS = "add_trashed_suffix_to_trashed_posts";
+
+ /**
+ * Original hook name: add_user_role
+ */
+ public static final String ADD_USER_ROLE = "add_user_role";
+
+ /**
+ * Original hook name: add_user_to_blog
+ */
+ public static final String ADD_USER_TO_BLOG = "add_user_to_blog";
+
+ /**
+ * Original hook name: add_{$meta_type}_meta
+ */
+ public static final String ADD_META_TYPE_META = "add_{$meta_type}_meta";
+
+ /**
+ * Original hook name: add_{$meta_type}_metadata
+ */
+ public static final String ADD_META_TYPE_METADATA = "add_{$meta_type}_metadata";
+
+ /**
+ * Original hook name: added_existing_user
+ */
+ public static final String ADDED_EXISTING_USER = "added_existing_user";
+
+ /**
+ * Original hook name: added_option
+ */
+ public static final String ADDED_OPTION = "added_option";
+
+ /**
+ * Original hook name: added_postmeta
+ */
+ public static final String ADDED_POSTMETA = "added_postmeta";
+
+ /**
+ * Original hook name: added_term_relationship
+ */
+ public static final String ADDED_TERM_RELATIONSHIP = "added_term_relationship";
+
+ /**
+ * Original hook name: added_usermeta
+ */
+ public static final String ADDED_USERMETA = "added_usermeta";
+
+ /**
+ * Original hook name: added_{$meta_type}_meta
+ */
+ public static final String ADDED_META_TYPE_META = "added_{$meta_type}_meta";
+
+ /**
+ * Original hook name: additional_capabilities_display
+ */
+ public static final String ADDITIONAL_CAPABILITIES_DISPLAY = "additional_capabilities_display";
+
+ /**
+ * Original hook name: admin_action_{$action}
+ */
+ public static final String ADMIN_ACTION_ACTION = "admin_action_{$action}";
+
+ /**
+ * Original hook name: admin_bar_init
+ */
+ public static final String ADMIN_BAR_INIT = "admin_bar_init";
+
+ /**
+ * Original hook name: admin_bar_menu
+ */
+ public static final String ADMIN_BAR_MENU = "admin_bar_menu";
+
+ /**
+ * Original hook name: admin_body_class
+ */
+ public static final String ADMIN_BODY_CLASS = "admin_body_class";
+
+ /**
+ * Original hook name: admin_color_scheme_picker
+ */
+ public static final String ADMIN_COLOR_SCHEME_PICKER = "admin_color_scheme_picker";
+
+ /**
+ * Original hook name: admin_comment_types_dropdown
+ */
+ public static final String ADMIN_COMMENT_TYPES_DROPDOWN = "admin_comment_types_dropdown";
+
+ /**
+ * Original hook name: admin_email_check_interval
+ */
+ public static final String ADMIN_EMAIL_CHECK_INTERVAL = "admin_email_check_interval";
+
+ /**
+ * Original hook name: admin_email_confirm
+ */
+ public static final String ADMIN_EMAIL_CONFIRM = "admin_email_confirm";
+
+ /**
+ * Original hook name: admin_email_confirm_form
+ */
+ public static final String ADMIN_EMAIL_CONFIRM_FORM = "admin_email_confirm_form";
+
+ /**
+ * Original hook name: admin_email_remind_interval
+ */
+ public static final String ADMIN_EMAIL_REMIND_INTERVAL = "admin_email_remind_interval";
+
+ /**
+ * Original hook name: admin_enqueue_scripts
+ */
+ public static final String ADMIN_ENQUEUE_SCRIPTS = "admin_enqueue_scripts";
+
+ /**
+ * Original hook name: admin_footer
+ */
+ public static final String ADMIN_FOOTER = "admin_footer";
+
+ /**
+ * Original hook name: admin_footer-press-this-php
+ */
+ public static final String ADMIN_FOOTER_PRESS_THIS_PHP = "admin_footer-press-this-php";
+
+ /**
+ * Original hook name: admin_footer-widgets-php
+ */
+ public static final String ADMIN_FOOTER_WIDGETS_PHP = "admin_footer-widgets-php";
+
+ /**
+ * Original hook name: admin_footer-{$hook_suffix}
+ */
+ public static final String ADMIN_FOOTER_HOOK_SUFFIX = "admin_footer-{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_footer_text
+ */
+ public static final String ADMIN_FOOTER_TEXT = "admin_footer_text";
+
+ /**
+ * Original hook name: admin_head
+ */
+ public static final String ADMIN_HEAD = "admin_head";
+
+ /**
+ * Original hook name: admin_head-media-upload-popup
+ */
+ public static final String ADMIN_HEAD_MEDIA_UPLOAD_POPUP = "admin_head-media-upload-popup";
+
+ /**
+ * Original hook name: admin_head-press-this-php
+ */
+ public static final String ADMIN_HEAD_PRESS_THIS_PHP = "admin_head-press-this-php";
+
+ /**
+ * Original hook name: admin_head-{$hook_suffix}
+ */
+ public static final String ADMIN_HEAD_HOOK_SUFFIX = "admin_head-{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_head-{$page_hook}
+ */
+ public static final String ADMIN_HEAD_PAGE_HOOK = "admin_head-{$page_hook}";
+
+ /**
+ * Original hook name: admin_head-{$plugin_page}
+ */
+ public static final String ADMIN_HEAD_PLUGIN_PAGE = "admin_head-{$plugin_page}";
+
+ /**
+ * Original hook name: admin_head_{$content_func}
+ */
+ public static final String ADMIN_HEAD_CONTENT_FUNC = "admin_head_{$content_func}";
+
+ /**
+ * Original hook name: admin_head{$hook_suffix}
+ */
+ public static final String ADMIN_HEADHOOK_SUFFIX = "admin_head{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_init
+ */
+ public static final String ADMIN_INIT = "admin_init";
+
+ /**
+ * Original hook name: admin_memory_limit
+ */
+ public static final String ADMIN_MEMORY_LIMIT = "admin_memory_limit";
+
+ /**
+ * Original hook name: admin_menu
+ */
+ public static final String ADMIN_MENU_2 = "admin_menu";
+
+ /**
+ * Original hook name: admin_notices
+ */
+ public static final String ADMIN_NOTICES = "admin_notices";
+
+ /**
+ * Original hook name: admin_page_access_denied
+ */
+ public static final String ADMIN_PAGE_ACCESS_DENIED = "admin_page_access_denied";
+
+ /**
+ * Original hook name: admin_post
+ */
+ public static final String ADMIN_POST = "admin_post";
+
+ /**
+ * Original hook name: admin_post_nopriv
+ */
+ public static final String ADMIN_POST_NOPRIV = "admin_post_nopriv";
+
+ /**
+ * Original hook name: admin_post_nopriv_{$action}
+ */
+ public static final String ADMIN_POST_NOPRIV_ACTION = "admin_post_nopriv_{$action}";
+
+ /**
+ * Original hook name: admin_post_thumbnail_html
+ */
+ public static final String ADMIN_POST_THUMBNAIL_HTML = "admin_post_thumbnail_html";
+
+ /**
+ * Original hook name: admin_post_thumbnail_size
+ */
+ public static final String ADMIN_POST_THUMBNAIL_SIZE = "admin_post_thumbnail_size";
+
+ /**
+ * Original hook name: admin_post_{$action}
+ */
+ public static final String ADMIN_POST_ACTION = "admin_post_{$action}";
+
+ /**
+ * Original hook name: admin_print_footer_scripts
+ */
+ public static final String ADMIN_PRINT_FOOTER_SCRIPTS = "admin_print_footer_scripts";
+
+ /**
+ * Original hook name: admin_print_footer_scripts-press-this-php
+ */
+ public static final String ADMIN_PRINT_FOOTER_SCRIPTS_PRESS_THIS_PHP = "admin_print_footer_scripts-press-this-php";
+
+ /**
+ * Original hook name: admin_print_footer_scripts-widgets-php
+ */
+ public static final String ADMIN_PRINT_FOOTER_SCRIPTS_WIDGETS_PHP = "admin_print_footer_scripts-widgets-php";
+
+ /**
+ * Original hook name: admin_print_footer_scripts-{$hook_suffix}
+ */
+ public static final String ADMIN_PRINT_FOOTER_SCRIPTS_HOOK_SUFFIX = "admin_print_footer_scripts-{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_print_scripts
+ */
+ public static final String ADMIN_PRINT_SCRIPTS = "admin_print_scripts";
+
+ /**
+ * Original hook name: admin_print_scripts-media-upload-popup
+ */
+ public static final String ADMIN_PRINT_SCRIPTS_MEDIA_UPLOAD_POPUP = "admin_print_scripts-media-upload-popup";
+
+ /**
+ * Original hook name: admin_print_scripts-press-this-php
+ */
+ public static final String ADMIN_PRINT_SCRIPTS_PRESS_THIS_PHP = "admin_print_scripts-press-this-php";
+
+ /**
+ * Original hook name: admin_print_scripts-widgets-php
+ */
+ public static final String ADMIN_PRINT_SCRIPTS_WIDGETS_PHP = "admin_print_scripts-widgets-php";
+
+ /**
+ * Original hook name: admin_print_scripts-{$hook_suffix}
+ */
+ public static final String ADMIN_PRINT_SCRIPTS_HOOK_SUFFIX = "admin_print_scripts-{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_print_scripts-{$page_hook}
+ */
+ public static final String ADMIN_PRINT_SCRIPTS_PAGE_HOOK = "admin_print_scripts-{$page_hook}";
+
+ /**
+ * Original hook name: admin_print_scripts-{$plugin_page}
+ */
+ public static final String ADMIN_PRINT_SCRIPTS_PLUGIN_PAGE = "admin_print_scripts-{$plugin_page}";
+
+ /**
+ * Original hook name: admin_print_scripts{$hook_suffix}
+ */
+ public static final String ADMIN_PRINT_SCRIPTSHOOK_SUFFIX = "admin_print_scripts{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_print_styles
+ */
+ public static final String ADMIN_PRINT_STYLES = "admin_print_styles";
+
+ /**
+ * Original hook name: admin_print_styles-media-upload-popup
+ */
+ public static final String ADMIN_PRINT_STYLES_MEDIA_UPLOAD_POPUP = "admin_print_styles-media-upload-popup";
+
+ /**
+ * Original hook name: admin_print_styles-press-this-php
+ */
+ public static final String ADMIN_PRINT_STYLES_PRESS_THIS_PHP = "admin_print_styles-press-this-php";
+
+ /**
+ * Original hook name: admin_print_styles-widgets-php
+ */
+ public static final String ADMIN_PRINT_STYLES_WIDGETS_PHP = "admin_print_styles-widgets-php";
+
+ /**
+ * Original hook name: admin_print_styles-{$hook_suffix}
+ */
+ public static final String ADMIN_PRINT_STYLES_HOOK_SUFFIX = "admin_print_styles-{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_print_styles{$hook_suffix}
+ */
+ public static final String ADMIN_PRINT_STYLESHOOK_SUFFIX = "admin_print_styles{$hook_suffix}";
+
+ /**
+ * Original hook name: admin_referrer_policy
+ */
+ public static final String ADMIN_REFERRER_POLICY = "admin_referrer_policy";
+
+ /**
+ * Original hook name: admin_title
+ */
+ public static final String ADMIN_TITLE = "admin_title";
+
+ /**
+ * Original hook name: admin_url
+ */
+ public static final String ADMIN_URL = "admin_url";
+
+ /**
+ * Original hook name: admin_user_info_links
+ */
+ public static final String ADMIN_USER_INFO_LINKS = "admin_user_info_links";
+
+ /**
+ * Original hook name: admin_viewport_meta
+ */
+ public static final String ADMIN_VIEWPORT_META = "admin_viewport_meta";
+
+ /**
+ * Original hook name: admin_xml_ns
+ */
+ public static final String ADMIN_XML_NS = "admin_xml_ns";
+
+ /**
+ * Original hook name: adminmenu
+ */
+ public static final String ADMINMENU = "adminmenu";
+
+ /**
+ * Original hook name: after-{$taxonomy}-table
+ */
+ public static final String AFTER_TAXONOMY_TABLE = "after-{$taxonomy}-table";
+
+ /**
+ * Original hook name: after_core_auto_updates_settings
+ */
+ public static final String AFTER_CORE_AUTO_UPDATES_SETTINGS = "after_core_auto_updates_settings";
+
+ /**
+ * Original hook name: after_db_upgrade
+ */
+ public static final String AFTER_DB_UPGRADE = "after_db_upgrade";
+
+ /**
+ * Original hook name: after_delete_post
+ */
+ public static final String AFTER_DELETE_POST = "after_delete_post";
+
+ /**
+ * Original hook name: after_menu_locations_table
+ */
+ public static final String AFTER_MENU_LOCATIONS_TABLE = "after_menu_locations_table";
+
+ /**
+ * Original hook name: after_mu_upgrade
+ */
+ public static final String AFTER_MU_UPGRADE = "after_mu_upgrade";
+
+ /**
+ * Original hook name: after_password_reset
+ */
+ public static final String AFTER_PASSWORD_RESET = "after_password_reset";
+
+ /**
+ * Original hook name: after_plugin_row
+ */
+ public static final String AFTER_PLUGIN_ROW = "after_plugin_row";
+
+ /**
+ * Original hook name: after_plugin_row_meta
+ */
+ public static final String AFTER_PLUGIN_ROW_META = "after_plugin_row_meta";
+
+ /**
+ * Original hook name: after_plugin_row_{$plugin_file}
+ */
+ public static final String AFTER_PLUGIN_ROW_PLUGIN_FILE = "after_plugin_row_{$plugin_file}";
+
+ /**
+ * Original hook name: after_populate_network
+ */
+ public static final String AFTER_POPULATE_NETWORK = "after_populate_network";
+
+ /**
+ * Original hook name: after_setup_theme
+ */
+ public static final String AFTER_SETUP_THEME = "after_setup_theme";
+
+ /**
+ * Original hook name: after_signup_form
+ */
+ public static final String AFTER_SIGNUP_FORM = "after_signup_form";
+
+ /**
+ * Original hook name: after_signup_site
+ */
+ public static final String AFTER_SIGNUP_SITE = "after_signup_site";
+
+ /**
+ * Original hook name: after_signup_user
+ */
+ public static final String AFTER_SIGNUP_USER = "after_signup_user";
+
+ /**
+ * Original hook name: after_switch_theme
+ */
+ public static final String AFTER_SWITCH_THEME = "after_switch_theme";
+
+ /**
+ * Original hook name: after_theme_row
+ */
+ public static final String AFTER_THEME_ROW = "after_theme_row";
+
+ /**
+ * Original hook name: after_theme_row_{$stylesheet}
+ */
+ public static final String AFTER_THEME_ROW_STYLESHEET = "after_theme_row_{$stylesheet}";
+
+ /**
+ * Original hook name: after_theme_row_{$theme_key}
+ */
+ public static final String AFTER_THEME_ROW_THEME_KEY = "after_theme_row_{$theme_key}";
+
+ /**
+ * Original hook name: after_upgrade_to_multisite
+ */
+ public static final String AFTER_UPGRADE_TO_MULTISITE = "after_upgrade_to_multisite";
+
+ /**
+ * Original hook name: after_wp_tiny_mce
+ */
+ public static final String AFTER_WP_TINY_MCE = "after_wp_tiny_mce";
+
+ /**
+ * Original hook name: ajax_query_attachments_args
+ */
+ public static final String AJAX_QUERY_ATTACHMENTS_ARGS = "ajax_query_attachments_args";
+
+ /**
+ * Original hook name: ajax_term_search_results
+ */
+ public static final String AJAX_TERM_SEARCH_RESULTS = "ajax_term_search_results";
+
+ /**
+ * Original hook name: akismet_admin_page_hook_suffixes
+ */
+ public static final String AKISMET_ADMIN_PAGE_HOOK_SUFFIXES = "akismet_admin_page_hook_suffixes";
+
+ /**
+ * Original hook name: akismet_batch_delete_count
+ */
+ public static final String AKISMET_BATCH_DELETE_COUNT = "akismet_batch_delete_count";
+
+ /**
+ * Original hook name: akismet_comment_check_response
+ */
+ public static final String AKISMET_COMMENT_CHECK_RESPONSE = "akismet_comment_check_response";
+
+ /**
+ * Original hook name: akismet_comment_form_privacy_notice
+ */
+ public static final String AKISMET_COMMENT_FORM_PRIVACY_NOTICE = "akismet_comment_form_privacy_notice";
+
+ /**
+ * Original hook name: akismet_comment_form_privacy_notice_markup
+ */
+ public static final String AKISMET_COMMENT_FORM_PRIVACY_NOTICE_MARKUP = "akismet_comment_form_privacy_notice_markup";
+
+ /**
+ * Original hook name: akismet_comment_form_privacy_notice_url_display
+ */
+ public static final String AKISMET_COMMENT_FORM_PRIVACY_NOTICE_URL_DISPLAY = "akismet_comment_form_privacy_notice_url_display";
+
+ /**
+ * Original hook name: akismet_comment_form_privacy_notice_url_hide
+ */
+ public static final String AKISMET_COMMENT_FORM_PRIVACY_NOTICE_URL_HIDE = "akismet_comment_form_privacy_notice_url_hide";
+
+ /**
+ * Original hook name: akismet_comment_nonce
+ */
+ public static final String AKISMET_COMMENT_NONCE = "akismet_comment_nonce";
+
+ /**
+ * Original hook name: akismet_debug_log
+ */
+ public static final String AKISMET_DEBUG_LOG = "akismet_debug_log";
+
+ /**
+ * Original hook name: akismet_delete_comment_batch
+ */
+ public static final String AKISMET_DELETE_COMMENT_BATCH = "akismet_delete_comment_batch";
+
+ /**
+ * Original hook name: akismet_delete_comment_interval
+ */
+ public static final String AKISMET_DELETE_COMMENT_INTERVAL = "akismet_delete_comment_interval";
+
+ /**
+ * Original hook name: akismet_delete_comment_limit
+ */
+ public static final String AKISMET_DELETE_COMMENT_LIMIT = "akismet_delete_comment_limit";
+
+ /**
+ * Original hook name: akismet_delete_commentmeta_batch
+ */
+ public static final String AKISMET_DELETE_COMMENTMETA_BATCH = "akismet_delete_commentmeta_batch";
+
+ /**
+ * Original hook name: akismet_delete_commentmeta_interval
+ */
+ public static final String AKISMET_DELETE_COMMENTMETA_INTERVAL = "akismet_delete_commentmeta_interval";
+
+ /**
+ * Original hook name: akismet_display_cron_disabled_notice
+ */
+ public static final String AKISMET_DISPLAY_CRON_DISABLED_NOTICE = "akismet_display_cron_disabled_notice";
+
+ /**
+ * Original hook name: akismet_enable_mshots
+ */
+ public static final String AKISMET_ENABLE_MSHOTS = "akismet_enable_mshots";
+
+ /**
+ * Original hook name: akismet_excluded_comment_types
+ */
+ public static final String AKISMET_EXCLUDED_COMMENT_TYPES = "akismet_excluded_comment_types";
+
+ /**
+ * Original hook name: akismet_get_api_key
+ */
+ public static final String AKISMET_GET_API_KEY = "akismet_get_api_key";
+
+ /**
+ * Original hook name: akismet_http_request_pre
+ */
+ public static final String AKISMET_HTTP_REQUEST_PRE = "akismet_http_request_pre";
+
+ /**
+ * Original hook name: akismet_https_disabled
+ */
+ public static final String AKISMET_HTTPS_DISABLED = "akismet_https_disabled";
+
+ /**
+ * Original hook name: akismet_https_request_failure
+ */
+ public static final String AKISMET_HTTPS_REQUEST_FAILURE = "akismet_https_request_failure";
+
+ /**
+ * Original hook name: akismet_https_request_pre
+ */
+ public static final String AKISMET_HTTPS_REQUEST_PRE = "akismet_https_request_pre";
+
+ /**
+ * Original hook name: akismet_optimize_table
+ */
+ public static final String AKISMET_OPTIMIZE_TABLE = "akismet_optimize_table";
+
+ /**
+ * Original hook name: akismet_predefined_api_key
+ */
+ public static final String AKISMET_PREDEFINED_API_KEY = "akismet_predefined_api_key";
+
+ /**
+ * Original hook name: akismet_request_args
+ */
+ public static final String AKISMET_REQUEST_ARGS = "akismet_request_args";
+
+ /**
+ * Original hook name: akismet_request_failure
+ */
+ public static final String AKISMET_REQUEST_FAILURE = "akismet_request_failure";
+
+ /**
+ * Original hook name: akismet_scheduled_recheck
+ */
+ public static final String AKISMET_SCHEDULED_RECHECK = "akismet_scheduled_recheck";
+
+ /**
+ * Original hook name: akismet_show_compatible_plugins
+ */
+ public static final String AKISMET_SHOW_COMPATIBLE_PLUGINS = "akismet_show_compatible_plugins";
+
+ /**
+ * Original hook name: akismet_show_user_comments_approved
+ */
+ public static final String AKISMET_SHOW_USER_COMMENTS_APPROVED = "akismet_show_user_comments_approved";
+
+ /**
+ * Original hook name: akismet_spam_caught
+ */
+ public static final String AKISMET_SPAM_CAUGHT = "akismet_spam_caught";
+
+ /**
+ * Original hook name: akismet_spam_check_warning_link_text
+ */
+ public static final String AKISMET_SPAM_CHECK_WARNING_LINK_TEXT = "akismet_spam_check_warning_link_text";
+
+ /**
+ * Original hook name: akismet_spam_count_incr
+ */
+ public static final String AKISMET_SPAM_COUNT_INCR = "akismet_spam_count_incr";
+
+ /**
+ * Original hook name: akismet_ssl_disabled
+ */
+ public static final String AKISMET_SSL_DISABLED = "akismet_ssl_disabled";
+
+ /**
+ * Original hook name: akismet_submit_nonspam_comment
+ */
+ public static final String AKISMET_SUBMIT_NONSPAM_COMMENT = "akismet_submit_nonspam_comment";
+
+ /**
+ * Original hook name: akismet_submit_spam_comment
+ */
+ public static final String AKISMET_SUBMIT_SPAM_COMMENT = "akismet_submit_spam_comment";
+
+ /**
+ * Original hook name: akismet_tabs
+ */
+ public static final String AKISMET_TABS = "akismet_tabs";
+
+ /**
+ * Original hook name: akismet_ua
+ */
+ public static final String AKISMET_UA = "akismet_ua";
+
+ /**
+ * Original hook name: akismet_view_arguments
+ */
+ public static final String AKISMET_VIEW_ARGUMENTS = "akismet_view_arguments";
+
+ /**
+ * Original hook name: akismet_webhook_received
+ */
+ public static final String AKISMET_WEBHOOK_RECEIVED = "akismet_webhook_received";
+
+ /**
+ * Original hook name: all_admin_notices
+ */
+ public static final String ALL_ADMIN_NOTICES = "all_admin_notices";
+
+ /**
+ * Original hook name: all_options
+ */
+ public static final String ALL_OPTIONS = "all_options";
+
+ /**
+ * Original hook name: all_plugins
+ */
+ public static final String ALL_PLUGINS = "all_plugins";
+
+ /**
+ * Original hook name: all_themes
+ */
+ public static final String ALL_THEMES = "all_themes";
+
+ /**
+ * Original hook name: alloptions
+ */
+ public static final String ALLOPTIONS = "alloptions";
+
+ /**
+ * Original hook name: allow_dev_auto_core_updates
+ */
+ public static final String ALLOW_DEV_AUTO_CORE_UPDATES = "allow_dev_auto_core_updates";
+
+ /**
+ * Original hook name: allow_empty_comment
+ */
+ public static final String ALLOW_EMPTY_COMMENT = "allow_empty_comment";
+
+ /**
+ * Original hook name: allow_major_auto_core_updates
+ */
+ public static final String ALLOW_MAJOR_AUTO_CORE_UPDATES = "allow_major_auto_core_updates";
+
+ /**
+ * Original hook name: allow_minor_auto_core_updates
+ */
+ public static final String ALLOW_MINOR_AUTO_CORE_UPDATES = "allow_minor_auto_core_updates";
+
+ /**
+ * Original hook name: allow_password_reset
+ */
+ public static final String ALLOW_PASSWORD_RESET = "allow_password_reset";
+
+ /**
+ * Original hook name: allow_subdirectory_install
+ */
+ public static final String ALLOW_SUBDIRECTORY_INSTALL = "allow_subdirectory_install";
+
+ /**
+ * Original hook name: allowed_block_types
+ */
+ public static final String ALLOWED_BLOCK_TYPES = "allowed_block_types";
+
+ /**
+ * Original hook name: allowed_block_types_all
+ */
+ public static final String ALLOWED_BLOCK_TYPES_ALL = "allowed_block_types_all";
+
+ /**
+ * Original hook name: allowed_http_origin
+ */
+ public static final String ALLOWED_HTTP_ORIGIN = "allowed_http_origin";
+
+ /**
+ * Original hook name: allowed_http_origins
+ */
+ public static final String ALLOWED_HTTP_ORIGINS = "allowed_http_origins";
+
+ /**
+ * Original hook name: allowed_options
+ */
+ public static final String ALLOWED_OPTIONS = "allowed_options";
+
+ /**
+ * Original hook name: allowed_redirect_hosts
+ */
+ public static final String ALLOWED_REDIRECT_HOSTS = "allowed_redirect_hosts";
+
+ /**
+ * Original hook name: allowed_themes
+ */
+ public static final String ALLOWED_THEMES = "allowed_themes";
+
+ /**
+ * Original hook name: app_entry
+ */
+ public static final String APP_ENTRY = "app_entry";
+
+ /**
+ * Original hook name: app_head
+ */
+ public static final String APP_HEAD = "app_head";
+
+ /**
+ * Original hook name: app_ns
+ */
+ public static final String APP_NS = "app_ns";
+
+ /**
+ * Original hook name: app_publish_post
+ */
+ public static final String APP_PUBLISH_POST = "app_publish_post";
+
+ /**
+ * Original hook name: application_password_did_authenticate
+ */
+ public static final String APPLICATION_PASSWORD_DID_AUTHENTICATE = "application_password_did_authenticate";
+
+ /**
+ * Original hook name: application_password_failed_authentication
+ */
+ public static final String APPLICATION_PASSWORD_FAILED_AUTHENTICATION = "application_password_failed_authentication";
+
+ /**
+ * Original hook name: application_password_is_api_request
+ */
+ public static final String APPLICATION_PASSWORD_IS_API_REQUEST = "application_password_is_api_request";
+
+ /**
+ * Original hook name: archive_blog
+ */
+ public static final String ARCHIVE_BLOG = "archive_blog";
+
+ /**
+ * Original hook name: async_update_translation
+ */
+ public static final String ASYNC_UPDATE_TRANSLATION = "async_update_translation";
+
+ /**
+ * Original hook name: async_upload_{$type}
+ */
+ public static final String ASYNC_UPLOAD_TYPE = "async_upload_{$type}";
+
+ /**
+ * Original hook name: atom_author
+ */
+ public static final String ATOM_AUTHOR = "atom_author";
+
+ /**
+ * Original hook name: atom_comments_ns
+ */
+ public static final String ATOM_COMMENTS_NS = "atom_comments_ns";
+
+ /**
+ * Original hook name: atom_enclosure
+ */
+ public static final String ATOM_ENCLOSURE = "atom_enclosure";
+
+ /**
+ * Original hook name: atom_entry
+ */
+ public static final String ATOM_ENTRY = "atom_entry";
+
+ /**
+ * Original hook name: atom_head
+ */
+ public static final String ATOM_HEAD = "atom_head";
+
+ /**
+ * Original hook name: atom_ns
+ */
+ public static final String ATOM_NS = "atom_ns";
+
+ /**
+ * Original hook name: atom_service_url
+ */
+ public static final String ATOM_SERVICE_URL = "atom_service_url";
+
+ /**
+ * Original hook name: atompub_create_post
+ */
+ public static final String ATOMPUB_CREATE_POST = "atompub_create_post";
+
+ /**
+ * Original hook name: atompub_put_post
+ */
+ public static final String ATOMPUB_PUT_POST = "atompub_put_post";
+
+ /**
+ * Original hook name: attach_session_information
+ */
+ public static final String ATTACH_SESSION_INFORMATION = "attach_session_information";
+
+ /**
+ * Original hook name: attachment_fields_to_edit
+ */
+ public static final String ATTACHMENT_FIELDS_TO_EDIT = "attachment_fields_to_edit";
+
+ /**
+ * Original hook name: attachment_fields_to_save
+ */
+ public static final String ATTACHMENT_FIELDS_TO_SAVE = "attachment_fields_to_save";
+
+ /**
+ * Original hook name: attachment_icon
+ */
+ public static final String ATTACHMENT_ICON = "attachment_icon";
+
+ /**
+ * Original hook name: attachment_innerHTML
+ */
+ public static final String ATTACHMENT_INNERHTML = "attachment_innerHTML";
+
+ /**
+ * Original hook name: attachment_link
+ */
+ public static final String ATTACHMENT_LINK = "attachment_link";
+
+ /**
+ * Original hook name: attachment_max_dims
+ */
+ public static final String ATTACHMENT_MAX_DIMS = "attachment_max_dims";
+
+ /**
+ * Original hook name: attachment_submitbox_misc_actions
+ */
+ public static final String ATTACHMENT_SUBMITBOX_MISC_ACTIONS = "attachment_submitbox_misc_actions";
+
+ /**
+ * Original hook name: attachment_thumbnail_args
+ */
+ public static final String ATTACHMENT_THUMBNAIL_ARGS = "attachment_thumbnail_args";
+
+ /**
+ * Original hook name: attachment_updated
+ */
+ public static final String ATTACHMENT_UPDATED = "attachment_updated";
+
+ /**
+ * Original hook name: attachment_url_to_postid
+ */
+ public static final String ATTACHMENT_URL_TO_POSTID = "attachment_url_to_postid";
+
+ /**
+ * Original hook name: attribute_escape
+ */
+ public static final String ATTRIBUTE_ESCAPE = "attribute_escape";
+
+ /**
+ * Original hook name: audio_send_to_editor_url
+ */
+ public static final String AUDIO_SEND_TO_EDITOR_URL = "audio_send_to_editor_url";
+
+ /**
+ * Original hook name: audio_submitbox_misc_sections
+ */
+ public static final String AUDIO_SUBMITBOX_MISC_SECTIONS = "audio_submitbox_misc_sections";
+
+ /**
+ * Original hook name: audio_upload_iframe_src
+ */
+ public static final String AUDIO_UPLOAD_IFRAME_SRC = "audio_upload_iframe_src";
+
+ /**
+ * Original hook name: auth_cookie
+ */
+ public static final String AUTH_COOKIE = "auth_cookie";
+
+ /**
+ * Original hook name: auth_cookie_bad_hash
+ */
+ public static final String AUTH_COOKIE_BAD_HASH = "auth_cookie_bad_hash";
+
+ /**
+ * Original hook name: auth_cookie_bad_session_token
+ */
+ public static final String AUTH_COOKIE_BAD_SESSION_TOKEN = "auth_cookie_bad_session_token";
+
+ /**
+ * Original hook name: auth_cookie_bad_username
+ */
+ public static final String AUTH_COOKIE_BAD_USERNAME = "auth_cookie_bad_username";
+
+ /**
+ * Original hook name: auth_cookie_expiration
+ */
+ public static final String AUTH_COOKIE_EXPIRATION = "auth_cookie_expiration";
+
+ /**
+ * Original hook name: auth_cookie_expired
+ */
+ public static final String AUTH_COOKIE_EXPIRED = "auth_cookie_expired";
+
+ /**
+ * Original hook name: auth_cookie_malformed
+ */
+ public static final String AUTH_COOKIE_MALFORMED = "auth_cookie_malformed";
+
+ /**
+ * Original hook name: auth_cookie_valid
+ */
+ public static final String AUTH_COOKIE_VALID = "auth_cookie_valid";
+
+ /**
+ * Original hook name: auth_post_meta_{$meta_key}
+ */
+ public static final String AUTH_POST_META_META_KEY = "auth_post_meta_{$meta_key}";
+
+ /**
+ * Original hook name: auth_post_{$post_type}_meta_{$meta_key}
+ */
+ public static final String AUTH_POST_POST_TYPE_META_META_KEY = "auth_post_{$post_type}_meta_{$meta_key}";
+
+ /**
+ * Original hook name: auth_redirect
+ */
+ public static final String AUTH_REDIRECT = "auth_redirect";
+
+ /**
+ * Original hook name: auth_redirect_scheme
+ */
+ public static final String AUTH_REDIRECT_SCHEME = "auth_redirect_scheme";
+
+ /**
+ * Original hook name: auth_{$object_type}_meta_{$meta_key}
+ */
+ public static final String AUTH_OBJECT_TYPE_META_META_KEY = "auth_{$object_type}_meta_{$meta_key}";
+
+ /**
+ * Original hook name: auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}
+ */
+ public static final String AUTH_OBJECT_TYPE_META_META_KEY_FOR_OBJECT_SUBTYPE = "auth_{$object_type}_meta_{$meta_key}_for_{$object_subtype}";
+
+ /**
+ * Original hook name: auth_{$object_type}_{$sub_type}_meta_{$meta_key}
+ */
+ public static final String AUTH_OBJECT_TYPE_SUB_TYPE_META_META_KEY = "auth_{$object_type}_{$sub_type}_meta_{$meta_key}";
+
+ /**
+ * Original hook name: authenticate
+ */
+ public static final String AUTHENTICATE = "authenticate";
+
+ /**
+ * Original hook name: author_email
+ */
+ public static final String AUTHOR_EMAIL = "author_email";
+
+ /**
+ * Original hook name: author_feed_link
+ */
+ public static final String AUTHOR_FEED_LINK = "author_feed_link";
+
+ /**
+ * Original hook name: author_link
+ */
+ public static final String AUTHOR_LINK = "author_link";
+
+ /**
+ * Original hook name: author_rewrite_rules
+ */
+ public static final String AUTHOR_REWRITE_RULES = "author_rewrite_rules";
+
+ /**
+ * Original hook name: author_template
+ */
+ public static final String AUTHOR_TEMPLATE = "author_template";
+
+ /**
+ * Original hook name: auto_core_update_email
+ */
+ public static final String AUTO_CORE_UPDATE_EMAIL = "auto_core_update_email";
+
+ /**
+ * Original hook name: auto_core_update_send_email
+ */
+ public static final String AUTO_CORE_UPDATE_SEND_EMAIL = "auto_core_update_send_email";
+
+ /**
+ * Original hook name: auto_plugin_theme_update_email
+ */
+ public static final String AUTO_PLUGIN_THEME_UPDATE_EMAIL = "auto_plugin_theme_update_email";
+
+ /**
+ * Original hook name: auto_plugin_update_send_email
+ */
+ public static final String AUTO_PLUGIN_UPDATE_SEND_EMAIL = "auto_plugin_update_send_email";
+
+ /**
+ * Original hook name: auto_theme_update_send_email
+ */
+ public static final String AUTO_THEME_UPDATE_SEND_EMAIL = "auto_theme_update_send_email";
+
+ /**
+ * Original hook name: auto_update_{$type}
+ */
+ public static final String AUTO_UPDATE_TYPE = "auto_update_{$type}";
+
+ /**
+ * Original hook name: autocomplete_users_for_site_admins
+ */
+ public static final String AUTOCOMPLETE_USERS_FOR_SITE_ADMINS = "autocomplete_users_for_site_admins";
+
+ /**
+ * Original hook name: automatic_updater_disabled
+ */
+ public static final String AUTOMATIC_UPDATER_DISABLED = "automatic_updater_disabled";
+
+ /**
+ * Original hook name: automatic_updates_complete
+ */
+ public static final String AUTOMATIC_UPDATES_COMPLETE = "automatic_updates_complete";
+
+ /**
+ * Original hook name: automatic_updates_debug_email
+ */
+ public static final String AUTOMATIC_UPDATES_DEBUG_EMAIL = "automatic_updates_debug_email";
+
+ /**
+ * Original hook name: automatic_updates_is_vcs_checkout
+ */
+ public static final String AUTOMATIC_UPDATES_IS_VCS_CHECKOUT = "automatic_updates_is_vcs_checkout";
+
+ /**
+ * Original hook name: automatic_updates_send_debug_email
+ */
+ public static final String AUTOMATIC_UPDATES_SEND_DEBUG_EMAIL = "automatic_updates_send_debug_email";
+
+ /**
+ * Original hook name: autosave_generate_nonces
+ */
+ public static final String AUTOSAVE_GENERATE_NONCES = "autosave_generate_nonces";
+
+ /**
+ * Original hook name: autosave_interval
+ */
+ public static final String AUTOSAVE_INTERVAL = "autosave_interval";
+
+ /**
+ * Original hook name: available_permalink_structure_tags
+ */
+ public static final String AVAILABLE_PERMALINK_STRUCTURE_TAGS = "available_permalink_structure_tags";
+
+ /**
+ * Original hook name: avatar_defaults
+ */
+ public static final String AVATAR_DEFAULTS = "avatar_defaults";
+
+ /**
+ * Original hook name: before_delete_post
+ */
+ public static final String BEFORE_DELETE_POST = "before_delete_post";
+
+ /**
+ * Original hook name: before_populate_network
+ */
+ public static final String BEFORE_POPULATE_NETWORK = "before_populate_network";
+
+ /**
+ * Original hook name: before_signup_form
+ */
+ public static final String BEFORE_SIGNUP_FORM = "before_signup_form";
+
+ /**
+ * Original hook name: before_signup_header
+ */
+ public static final String BEFORE_SIGNUP_HEADER = "before_signup_header";
+
+ /**
+ * Original hook name: before_wp_tiny_mce
+ */
+ public static final String BEFORE_WP_TINY_MCE = "before_wp_tiny_mce";
+
+ /**
+ * Original hook name: begin_fetch_post_thumbnail_html
+ */
+ public static final String BEGIN_FETCH_POST_THUMBNAIL_HTML = "begin_fetch_post_thumbnail_html";
+
+ /**
+ * Original hook name: big_image_size_threshold
+ */
+ public static final String BIG_IMAGE_SIZE_THRESHOLD = "big_image_size_threshold";
+
+ /**
+ * Original hook name: block_bindings_source_value
+ */
+ public static final String BLOCK_BINDINGS_SOURCE_VALUE = "block_bindings_source_value";
+
+ /**
+ * Original hook name: block_bindings_supported_attributes
+ */
+ public static final String BLOCK_BINDINGS_SUPPORTED_ATTRIBUTES = "block_bindings_supported_attributes";
+
+ /**
+ * Original hook name: block_bindings_supported_attributes_{$block_type}
+ */
+ public static final String BLOCK_BINDINGS_SUPPORTED_ATTRIBUTES_BLOCK_TYPE = "block_bindings_supported_attributes_{$block_type}";
+
+ /**
+ * Original hook name: block_categories
+ */
+ public static final String BLOCK_CATEGORIES = "block_categories";
+
+ /**
+ * Original hook name: block_categories_all
+ */
+ public static final String BLOCK_CATEGORIES_ALL = "block_categories_all";
+
+ /**
+ * Original hook name: block_core_navigation_listable_blocks
+ */
+ public static final String BLOCK_CORE_NAVIGATION_LISTABLE_BLOCKS = "block_core_navigation_listable_blocks";
+
+ /**
+ * Original hook name: block_core_navigation_render_fallback
+ */
+ public static final String BLOCK_CORE_NAVIGATION_RENDER_FALLBACK = "block_core_navigation_render_fallback";
+
+ /**
+ * Original hook name: block_core_navigation_render_inner_blocks
+ */
+ public static final String BLOCK_CORE_NAVIGATION_RENDER_INNER_BLOCKS = "block_core_navigation_render_inner_blocks";
+
+ /**
+ * Original hook name: block_core_social_link_get_services
+ */
+ public static final String BLOCK_CORE_SOCIAL_LINK_GET_SERVICES = "block_core_social_link_get_services";
+
+ /**
+ * Original hook name: block_default_classname
+ */
+ public static final String BLOCK_DEFAULT_CLASSNAME = "block_default_classname";
+
+ /**
+ * Original hook name: block_editor_meta_box_hidden_fields
+ */
+ public static final String BLOCK_EDITOR_META_BOX_HIDDEN_FIELDS = "block_editor_meta_box_hidden_fields";
+
+ /**
+ * Original hook name: block_editor_no_javascript_message
+ */
+ public static final String BLOCK_EDITOR_NO_JAVASCRIPT_MESSAGE = "block_editor_no_javascript_message";
+
+ /**
+ * Original hook name: block_editor_preload_paths
+ */
+ public static final String BLOCK_EDITOR_PRELOAD_PATHS = "block_editor_preload_paths";
+
+ /**
+ * Original hook name: block_editor_rest_api_preload_paths
+ */
+ public static final String BLOCK_EDITOR_REST_API_PRELOAD_PATHS = "block_editor_rest_api_preload_paths";
+
+ /**
+ * Original hook name: block_editor_settings
+ */
+ public static final String BLOCK_EDITOR_SETTINGS = "block_editor_settings";
+
+ /**
+ * Original hook name: block_editor_settings_all
+ */
+ public static final String BLOCK_EDITOR_SETTINGS_ALL = "block_editor_settings_all";
+
+ /**
+ * Original hook name: block_local_requests
+ */
+ public static final String BLOCK_LOCAL_REQUESTS = "block_local_requests";
+
+ /**
+ * Original hook name: block_parser_class
+ */
+ public static final String BLOCK_PARSER_CLASS = "block_parser_class";
+
+ /**
+ * Original hook name: block_type_metadata
+ */
+ public static final String BLOCK_TYPE_METADATA = "block_type_metadata";
+
+ /**
+ * Original hook name: block_type_metadata_settings
+ */
+ public static final String BLOCK_TYPE_METADATA_SETTINGS = "block_type_metadata_settings";
+
+ /**
+ * Original hook name: block_widgets_no_javascript_message
+ */
+ public static final String BLOCK_WIDGETS_NO_JAVASCRIPT_MESSAGE = "block_widgets_no_javascript_message";
+
+ /**
+ * Original hook name: blog_details
+ */
+ public static final String BLOG_DETAILS = "blog_details";
+
+ /**
+ * Original hook name: blog_option_{$option}
+ */
+ public static final String BLOG_OPTION_OPTION = "blog_option_{$option}";
+
+ /**
+ * Original hook name: blog_option_{$setting}
+ */
+ public static final String BLOG_OPTION_SETTING = "blog_option_{$setting}";
+
+ /**
+ * Original hook name: blog_privacy_selector
+ */
+ public static final String BLOG_PRIVACY_SELECTOR = "blog_privacy_selector";
+
+ /**
+ * Original hook name: blog_redirect_404
+ */
+ public static final String BLOG_REDIRECT_404 = "blog_redirect_404";
+
+ /**
+ * Original hook name: bloginfo
+ */
+ public static final String BLOGINFO = "bloginfo";
+
+ /**
+ * Original hook name: bloginfo_rss
+ */
+ public static final String BLOGINFO_RSS = "bloginfo_rss";
+
+ /**
+ * Original hook name: bloginfo_url
+ */
+ public static final String BLOGINFO_URL = "bloginfo_url";
+
+ /**
+ * Original hook name: body_class
+ */
+ public static final String BODY_CLASS = "body_class";
+
+ /**
+ * Original hook name: browse-happy-notice
+ */
+ public static final String BROWSE_HAPPY_NOTICE = "browse-happy-notice";
+
+ /**
+ * Original hook name: bulk_action_observer_ids
+ */
+ public static final String BULK_ACTION_OBSERVER_IDS = "bulk_action_observer_ids";
+
+ /**
+ * Original hook name: bulk_actions-{$screen->id}
+ */
+ public static final String BULK_ACTIONS_SCREEN_ID = "bulk_actions-{$screen->id}";
+
+ /**
+ * Original hook name: bulk_actions-{$this->screen->id}
+ */
+ public static final String BULK_ACTIONS_THIS_SCREEN_ID = "bulk_actions-{$this->screen->id}";
+
+ /**
+ * Original hook name: bulk_edit_custom_box
+ */
+ public static final String BULK_EDIT_CUSTOM_BOX = "bulk_edit_custom_box";
+
+ /**
+ * Original hook name: bulk_edit_posts
+ */
+ public static final String BULK_EDIT_POSTS = "bulk_edit_posts";
+
+ /**
+ * Original hook name: bulk_post_updated_messages
+ */
+ public static final String BULK_POST_UPDATED_MESSAGES = "bulk_post_updated_messages";
+
+ /**
+ * Original hook name: can_add_user_to_blog
+ */
+ public static final String CAN_ADD_USER_TO_BLOG = "can_add_user_to_blog";
+
+ /**
+ * Original hook name: can_edit_network
+ */
+ public static final String CAN_EDIT_NETWORK = "can_edit_network";
+
+ /**
+ * Original hook name: cancel_comment_reply_link
+ */
+ public static final String CANCEL_COMMENT_REPLY_LINK = "cancel_comment_reply_link";
+
+ /**
+ * Original hook name: cat_id_filter
+ */
+ public static final String CAT_ID_FILTER = "cat_id_filter";
+
+ /**
+ * Original hook name: cat_row
+ */
+ public static final String CAT_ROW = "cat_row";
+
+ /**
+ * Original hook name: cat_row_actions
+ */
+ public static final String CAT_ROW_ACTIONS = "cat_row_actions";
+
+ /**
+ * Original hook name: cat_rows
+ */
+ public static final String CAT_ROWS = "cat_rows";
+
+ /**
+ * Original hook name: category_archive_meta
+ */
+ public static final String CATEGORY_ARCHIVE_META = "category_archive_meta";
+
+ /**
+ * Original hook name: category_css_class
+ */
+ public static final String CATEGORY_CSS_CLASS = "category_css_class";
+
+ /**
+ * Original hook name: category_description
+ */
+ public static final String CATEGORY_DESCRIPTION = "category_description";
+
+ /**
+ * Original hook name: category_feed_link
+ */
+ public static final String CATEGORY_FEED_LINK = "category_feed_link";
+
+ /**
+ * Original hook name: category_link
+ */
+ public static final String CATEGORY_LINK = "category_link";
+
+ /**
+ * Original hook name: category_list_link_attributes
+ */
+ public static final String CATEGORY_LIST_LINK_ATTRIBUTES = "category_list_link_attributes";
+
+ /**
+ * Original hook name: category_rewrite_rules
+ */
+ public static final String CATEGORY_REWRITE_RULES = "category_rewrite_rules";
+
+ /**
+ * Original hook name: category_save_pre
+ */
+ public static final String CATEGORY_SAVE_PRE = "category_save_pre";
+
+ /**
+ * Original hook name: category_template
+ */
+ public static final String CATEGORY_TEMPLATE = "category_template";
+
+ /**
+ * Original hook name: change_locale
+ */
+ public static final String CHANGE_LOCALE = "change_locale";
+
+ /**
+ * Original hook name: check_admin_referer
+ */
+ public static final String CHECK_ADMIN_REFERER = "check_admin_referer";
+
+ /**
+ * Original hook name: check_ajax_referer
+ */
+ public static final String CHECK_AJAX_REFERER = "check_ajax_referer";
+
+ /**
+ * Original hook name: check_comment_flood
+ */
+ public static final String CHECK_COMMENT_FLOOD = "check_comment_flood";
+
+ /**
+ * Original hook name: check_is_user_spammed
+ */
+ public static final String CHECK_IS_USER_SPAMMED = "check_is_user_spammed";
+
+ /**
+ * Original hook name: check_password
+ */
+ public static final String CHECK_PASSWORD = "check_password";
+
+ /**
+ * Original hook name: check_passwords
+ */
+ public static final String CHECK_PASSWORDS = "check_passwords";
+
+ /**
+ * Original hook name: clean_attachment_cache
+ */
+ public static final String CLEAN_ATTACHMENT_CACHE = "clean_attachment_cache";
+
+ /**
+ * Original hook name: clean_comment_cache
+ */
+ public static final String CLEAN_COMMENT_CACHE = "clean_comment_cache";
+
+ /**
+ * Original hook name: clean_network_cache
+ */
+ public static final String CLEAN_NETWORK_CACHE = "clean_network_cache";
+
+ /**
+ * Original hook name: clean_object_term_cache
+ */
+ public static final String CLEAN_OBJECT_TERM_CACHE = "clean_object_term_cache";
+
+ /**
+ * Original hook name: clean_page_cache
+ */
+ public static final String CLEAN_PAGE_CACHE = "clean_page_cache";
+
+ /**
+ * Original hook name: clean_post_cache
+ */
+ public static final String CLEAN_POST_CACHE = "clean_post_cache";
+
+ /**
+ * Original hook name: clean_site_cache
+ */
+ public static final String CLEAN_SITE_CACHE = "clean_site_cache";
+
+ /**
+ * Original hook name: clean_taxonomy_cache
+ */
+ public static final String CLEAN_TAXONOMY_CACHE = "clean_taxonomy_cache";
+
+ /**
+ * Original hook name: clean_term_cache
+ */
+ public static final String CLEAN_TERM_CACHE = "clean_term_cache";
+
+ /**
+ * Original hook name: clean_url
+ */
+ public static final String CLEAN_URL = "clean_url";
+
+ /**
+ * Original hook name: clean_user_cache
+ */
+ public static final String CLEAN_USER_CACHE = "clean_user_cache";
+
+ /**
+ * Original hook name: clear_auth_cookie
+ */
+ public static final String CLEAR_AUTH_COOKIE = "clear_auth_cookie";
+
+ /**
+ * Original hook name: close_comments_for_post_types
+ */
+ public static final String CLOSE_COMMENTS_FOR_POST_TYPES = "close_comments_for_post_types";
+
+ /**
+ * Original hook name: codepress_supported_langs
+ */
+ public static final String CODEPRESS_SUPPORTED_LANGS = "codepress_supported_langs";
+
+ /**
+ * Original hook name: comment_add_author_url
+ */
+ public static final String COMMENT_ADD_AUTHOR_URL = "comment_add_author_url";
+
+ /**
+ * Original hook name: comment_atom_entry
+ */
+ public static final String COMMENT_ATOM_ENTRY = "comment_atom_entry";
+
+ /**
+ * Original hook name: comment_author
+ */
+ public static final String COMMENT_AUTHOR = "comment_author";
+
+ /**
+ * Original hook name: comment_author_link_rel
+ */
+ public static final String COMMENT_AUTHOR_LINK_REL = "comment_author_link_rel";
+
+ /**
+ * Original hook name: comment_author_rss
+ */
+ public static final String COMMENT_AUTHOR_RSS = "comment_author_rss";
+
+ /**
+ * Original hook name: comment_class
+ */
+ public static final String COMMENT_CLASS = "comment_class";
+
+ /**
+ * Original hook name: comment_closed
+ */
+ public static final String COMMENT_CLOSED = "comment_closed";
+
+ /**
+ * Original hook name: comment_content_presave
+ */
+ public static final String COMMENT_CONTENT_PRESAVE = "comment_content_presave";
+
+ /**
+ * Original hook name: comment_cookie_lifetime
+ */
+ public static final String COMMENT_COOKIE_LIFETIME = "comment_cookie_lifetime";
+
+ /**
+ * Original hook name: comment_duplicate_message
+ */
+ public static final String COMMENT_DUPLICATE_MESSAGE = "comment_duplicate_message";
+
+ /**
+ * Original hook name: comment_duplicate_trigger
+ */
+ public static final String COMMENT_DUPLICATE_TRIGGER = "comment_duplicate_trigger";
+
+ /**
+ * Original hook name: comment_edit_pre
+ */
+ public static final String COMMENT_EDIT_PRE = "comment_edit_pre";
+
+ /**
+ * Original hook name: comment_edit_redirect
+ */
+ public static final String COMMENT_EDIT_REDIRECT = "comment_edit_redirect";
+
+ /**
+ * Original hook name: comment_email
+ */
+ public static final String COMMENT_EMAIL = "comment_email";
+
+ /**
+ * Original hook name: comment_excerpt
+ */
+ public static final String COMMENT_EXCERPT = "comment_excerpt";
+
+ /**
+ * Original hook name: comment_excerpt_length
+ */
+ public static final String COMMENT_EXCERPT_LENGTH = "comment_excerpt_length";
+
+ /**
+ * Original hook name: comment_feed_groupby
+ */
+ public static final String COMMENT_FEED_GROUPBY = "comment_feed_groupby";
+
+ /**
+ * Original hook name: comment_feed_join
+ */
+ public static final String COMMENT_FEED_JOIN = "comment_feed_join";
+
+ /**
+ * Original hook name: comment_feed_limits
+ */
+ public static final String COMMENT_FEED_LIMITS = "comment_feed_limits";
+
+ /**
+ * Original hook name: comment_feed_orderby
+ */
+ public static final String COMMENT_FEED_ORDERBY = "comment_feed_orderby";
+
+ /**
+ * Original hook name: comment_feed_where
+ */
+ public static final String COMMENT_FEED_WHERE = "comment_feed_where";
+
+ /**
+ * Original hook name: comment_flood_filter
+ */
+ public static final String COMMENT_FLOOD_FILTER = "comment_flood_filter";
+
+ /**
+ * Original hook name: comment_flood_message
+ */
+ public static final String COMMENT_FLOOD_MESSAGE = "comment_flood_message";
+
+ /**
+ * Original hook name: comment_flood_trigger
+ */
+ public static final String COMMENT_FLOOD_TRIGGER = "comment_flood_trigger";
+
+ /**
+ * Original hook name: comment_form
+ */
+ public static final String COMMENT_FORM = "comment_form";
+
+ /**
+ * Original hook name: comment_form_after
+ */
+ public static final String COMMENT_FORM_AFTER = "comment_form_after";
+
+ /**
+ * Original hook name: comment_form_after_fields
+ */
+ public static final String COMMENT_FORM_AFTER_FIELDS = "comment_form_after_fields";
+
+ /**
+ * Original hook name: comment_form_before
+ */
+ public static final String COMMENT_FORM_BEFORE = "comment_form_before";
+
+ /**
+ * Original hook name: comment_form_before_fields
+ */
+ public static final String COMMENT_FORM_BEFORE_FIELDS = "comment_form_before_fields";
+
+ /**
+ * Original hook name: comment_form_comments_closed
+ */
+ public static final String COMMENT_FORM_COMMENTS_CLOSED = "comment_form_comments_closed";
+
+ /**
+ * Original hook name: comment_form_default_fields
+ */
+ public static final String COMMENT_FORM_DEFAULT_FIELDS = "comment_form_default_fields";
+
+ /**
+ * Original hook name: comment_form_defaults
+ */
+ public static final String COMMENT_FORM_DEFAULTS = "comment_form_defaults";
+
+ /**
+ * Original hook name: comment_form_field_comment
+ */
+ public static final String COMMENT_FORM_FIELD_COMMENT = "comment_form_field_comment";
+
+ /**
+ * Original hook name: comment_form_field_{$name}
+ */
+ public static final String COMMENT_FORM_FIELD_NAME = "comment_form_field_{$name}";
+
+ /**
+ * Original hook name: comment_form_fields
+ */
+ public static final String COMMENT_FORM_FIELDS = "comment_form_fields";
+
+ /**
+ * Original hook name: comment_form_logged_in
+ */
+ public static final String COMMENT_FORM_LOGGED_IN = "comment_form_logged_in";
+
+ /**
+ * Original hook name: comment_form_logged_in_after
+ */
+ public static final String COMMENT_FORM_LOGGED_IN_AFTER = "comment_form_logged_in_after";
+
+ /**
+ * Original hook name: comment_form_must_log_in_after
+ */
+ public static final String COMMENT_FORM_MUST_LOG_IN_AFTER = "comment_form_must_log_in_after";
+
+ /**
+ * Original hook name: comment_form_submit_button
+ */
+ public static final String COMMENT_FORM_SUBMIT_BUTTON = "comment_form_submit_button";
+
+ /**
+ * Original hook name: comment_form_submit_field
+ */
+ public static final String COMMENT_FORM_SUBMIT_FIELD = "comment_form_submit_field";
+
+ /**
+ * Original hook name: comment_form_top
+ */
+ public static final String COMMENT_FORM_TOP = "comment_form_top";
+
+ /**
+ * Original hook name: comment_id_fields
+ */
+ public static final String COMMENT_ID_FIELDS = "comment_id_fields";
+
+ /**
+ * Original hook name: comment_id_not_found
+ */
+ public static final String COMMENT_ID_NOT_FOUND = "comment_id_not_found";
+
+ /**
+ * Original hook name: comment_link
+ */
+ public static final String COMMENT_LINK = "comment_link";
+
+ /**
+ * Original hook name: comment_loop_start
+ */
+ public static final String COMMENT_LOOP_START = "comment_loop_start";
+
+ /**
+ * Original hook name: comment_max_links_url
+ */
+ public static final String COMMENT_MAX_LINKS_URL = "comment_max_links_url";
+
+ /**
+ * Original hook name: comment_moderation_headers
+ */
+ public static final String COMMENT_MODERATION_HEADERS = "comment_moderation_headers";
+
+ /**
+ * Original hook name: comment_moderation_recipients
+ */
+ public static final String COMMENT_MODERATION_RECIPIENTS = "comment_moderation_recipients";
+
+ /**
+ * Original hook name: comment_moderation_subject
+ */
+ public static final String COMMENT_MODERATION_SUBJECT = "comment_moderation_subject";
+
+ /**
+ * Original hook name: comment_moderation_text
+ */
+ public static final String COMMENT_MODERATION_TEXT = "comment_moderation_text";
+
+ /**
+ * Original hook name: comment_notification_headers
+ */
+ public static final String COMMENT_NOTIFICATION_HEADERS = "comment_notification_headers";
+
+ /**
+ * Original hook name: comment_notification_notify_author
+ */
+ public static final String COMMENT_NOTIFICATION_NOTIFY_AUTHOR = "comment_notification_notify_author";
+
+ /**
+ * Original hook name: comment_notification_recipients
+ */
+ public static final String COMMENT_NOTIFICATION_RECIPIENTS = "comment_notification_recipients";
+
+ /**
+ * Original hook name: comment_notification_subject
+ */
+ public static final String COMMENT_NOTIFICATION_SUBJECT = "comment_notification_subject";
+
+ /**
+ * Original hook name: comment_notification_text
+ */
+ public static final String COMMENT_NOTIFICATION_TEXT = "comment_notification_text";
+
+ /**
+ * Original hook name: comment_on_draft
+ */
+ public static final String COMMENT_ON_DRAFT = "comment_on_draft";
+
+ /**
+ * Original hook name: comment_on_password_protected
+ */
+ public static final String COMMENT_ON_PASSWORD_PROTECTED = "comment_on_password_protected";
+
+ /**
+ * Original hook name: comment_on_trash
+ */
+ public static final String COMMENT_ON_TRASH = "comment_on_trash";
+
+ /**
+ * Original hook name: comment_post
+ */
+ public static final String COMMENT_POST = "comment_post";
+
+ /**
+ * Original hook name: comment_post_redirect
+ */
+ public static final String COMMENT_POST_REDIRECT = "comment_post_redirect";
+
+ /**
+ * Original hook name: comment_relatedlinks_list
+ */
+ public static final String COMMENT_RELATEDLINKS_LIST = "comment_relatedlinks_list";
+
+ /**
+ * Original hook name: comment_remove_author_url
+ */
+ public static final String COMMENT_REMOVE_AUTHOR_URL = "comment_remove_author_url";
+
+ /**
+ * Original hook name: comment_reply_link
+ */
+ public static final String COMMENT_REPLY_LINK = "comment_reply_link";
+
+ /**
+ * Original hook name: comment_reply_link_args
+ */
+ public static final String COMMENT_REPLY_LINK_ARGS = "comment_reply_link_args";
+
+ /**
+ * Original hook name: comment_reply_to_unapproved_comment
+ */
+ public static final String COMMENT_REPLY_TO_UNAPPROVED_COMMENT = "comment_reply_to_unapproved_comment";
+
+ /**
+ * Original hook name: comment_row_actions
+ */
+ public static final String COMMENT_ROW_ACTIONS = "comment_row_actions";
+
+ /**
+ * Original hook name: comment_save_pre
+ */
+ public static final String COMMENT_SAVE_PRE = "comment_save_pre";
+
+ /**
+ * Original hook name: comment_status_links
+ */
+ public static final String COMMENT_STATUS_LINKS = "comment_status_links";
+
+ /**
+ * Original hook name: comment_status_pre
+ */
+ public static final String COMMENT_STATUS_PRE = "comment_status_pre";
+
+ /**
+ * Original hook name: comment_text
+ */
+ public static final String COMMENT_TEXT = "comment_text";
+
+ /**
+ * Original hook name: comment_text_rss
+ */
+ public static final String COMMENT_TEXT_RSS = "comment_text_rss";
+
+ /**
+ * Original hook name: comment_url
+ */
+ public static final String COMMENT_URL = "comment_url";
+
+ /**
+ * Original hook name: comment_{$new_status}_{$comment->comment_type}
+ */
+ public static final String COMMENT_NEW_STATUS_COMMENT_COMMENT_TYPE = "comment_{$new_status}_{$comment->comment_type}";
+
+ /**
+ * Original hook name: comment_{$old_status}_to_{$new_status}
+ */
+ public static final String COMMENT_OLD_STATUS_TO_NEW_STATUS = "comment_{$old_status}_to_{$new_status}";
+
+ /**
+ * Original hook name: commentrss2_item
+ */
+ public static final String COMMENTRSS2_ITEM = "commentrss2_item";
+
+ /**
+ * Original hook name: comments_array
+ */
+ public static final String COMMENTS_ARRAY = "comments_array";
+
+ /**
+ * Original hook name: comments_atom_head
+ */
+ public static final String COMMENTS_ATOM_HEAD = "comments_atom_head";
+
+ /**
+ * Original hook name: comments_clauses
+ */
+ public static final String COMMENTS_CLAUSES = "comments_clauses";
+
+ /**
+ * Original hook name: comments_link_feed
+ */
+ public static final String COMMENTS_LINK_FEED = "comments_link_feed";
+
+ /**
+ * Original hook name: comments_list_table_query_args
+ */
+ public static final String COMMENTS_LIST_TABLE_QUERY_ARGS = "comments_list_table_query_args";
+
+ /**
+ * Original hook name: comments_number
+ */
+ public static final String COMMENTS_NUMBER = "comments_number";
+
+ /**
+ * Original hook name: comments_open
+ */
+ public static final String COMMENTS_OPEN = "comments_open";
+
+ /**
+ * Original hook name: comments_per_page
+ */
+ public static final String COMMENTS_PER_PAGE = "comments_per_page";
+
+ /**
+ * Original hook name: comments_popup_link_attributes
+ */
+ public static final String COMMENTS_POPUP_LINK_ATTRIBUTES = "comments_popup_link_attributes";
+
+ /**
+ * Original hook name: comments_popup_template
+ */
+ public static final String COMMENTS_POPUP_TEMPLATE = "comments_popup_template";
+
+ /**
+ * Original hook name: comments_pre_query
+ */
+ public static final String COMMENTS_PRE_QUERY = "comments_pre_query";
+
+ /**
+ * Original hook name: comments_rewrite_rules
+ */
+ public static final String COMMENTS_REWRITE_RULES = "comments_rewrite_rules";
+
+ /**
+ * Original hook name: comments_template
+ */
+ public static final String COMMENTS_TEMPLATE = "comments_template";
+
+ /**
+ * Original hook name: comments_template_query_args
+ */
+ public static final String COMMENTS_TEMPLATE_QUERY_ARGS = "comments_template_query_args";
+
+ /**
+ * Original hook name: comments_template_top_level_query_args
+ */
+ public static final String COMMENTS_TEMPLATE_TOP_LEVEL_QUERY_ARGS = "comments_template_top_level_query_args";
+
+ /**
+ * Original hook name: commentsrss2_head
+ */
+ public static final String COMMENTSRSS2_HEAD = "commentsrss2_head";
+
+ /**
+ * Original hook name: content_edit_pre
+ */
+ public static final String CONTENT_EDIT_PRE = "content_edit_pre";
+
+ /**
+ * Original hook name: content_filtered_save_pre
+ */
+ public static final String CONTENT_FILTERED_SAVE_PRE = "content_filtered_save_pre";
+
+ /**
+ * Original hook name: content_pagination
+ */
+ public static final String CONTENT_PAGINATION = "content_pagination";
+
+ /**
+ * Original hook name: content_save_pre
+ */
+ public static final String CONTENT_SAVE_PRE = "content_save_pre";
+
+ /**
+ * Original hook name: content_url
+ */
+ public static final String CONTENT_URL = "content_url";
+
+ /**
+ * Original hook name: contextual_help
+ */
+ public static final String CONTEXTUAL_HELP = "contextual_help";
+
+ /**
+ * Original hook name: contextual_help_list
+ */
+ public static final String CONTEXTUAL_HELP_LIST = "contextual_help_list";
+
+ /**
+ * Original hook name: core_files_loaded
+ */
+ public static final String CORE_FILES_LOADED = "core_files_loaded";
+
+ /**
+ * Original hook name: core_upgrade_preamble
+ */
+ public static final String CORE_UPGRADE_PREAMBLE = "core_upgrade_preamble";
+
+ /**
+ * Original hook name: core_version_check_locale
+ */
+ public static final String CORE_VERSION_CHECK_LOCALE = "core_version_check_locale";
+
+ /**
+ * Original hook name: core_version_check_query_args
+ */
+ public static final String CORE_VERSION_CHECK_QUERY_ARGS = "core_version_check_query_args";
+
+ /**
+ * Original hook name: create_category
+ */
+ public static final String CREATE_CATEGORY = "create_category";
+
+ /**
+ * Original hook name: create_term
+ */
+ public static final String CREATE_TERM = "create_term";
+
+ /**
+ * Original hook name: create_user_query
+ */
+ public static final String CREATE_USER_QUERY = "create_user_query";
+
+ /**
+ * Original hook name: create_{$taxonomy}
+ */
+ public static final String CREATE_TAXONOMY = "create_{$taxonomy}";
+
+ /**
+ * Original hook name: created_category
+ */
+ public static final String CREATED_CATEGORY = "created_category";
+
+ /**
+ * Original hook name: created_term
+ */
+ public static final String CREATED_TERM = "created_term";
+
+ /**
+ * Original hook name: created_{$taxonomy}
+ */
+ public static final String CREATED_TAXONOMY = "created_{$taxonomy}";
+
+ /**
+ * Original hook name: cron_memory_limit
+ */
+ public static final String CRON_MEMORY_LIMIT = "cron_memory_limit";
+
+ /**
+ * Original hook name: cron_request
+ */
+ public static final String CRON_REQUEST = "cron_request";
+
+ /**
+ * Original hook name: cron_reschedule_event_error
+ */
+ public static final String CRON_RESCHEDULE_EVENT_ERROR = "cron_reschedule_event_error";
+
+ /**
+ * Original hook name: cron_schedules
+ */
+ public static final String CRON_SCHEDULES = "cron_schedules";
+
+ /**
+ * Original hook name: cron_unschedule_event_error
+ */
+ public static final String CRON_UNSCHEDULE_EVENT_ERROR = "cron_unschedule_event_error";
+
+ /**
+ * Original hook name: current_screen
+ */
+ public static final String CURRENT_SCREEN = "current_screen";
+
+ /**
+ * Original hook name: current_theme_supports-{$feature}
+ */
+ public static final String CURRENT_THEME_SUPPORTS_FEATURE = "current_theme_supports-{$feature}";
+
+ /**
+ * Original hook name: custom_header_options
+ */
+ public static final String CUSTOM_HEADER_OPTIONS = "custom_header_options";
+
+ /**
+ * Original hook name: custom_menu_order
+ */
+ public static final String CUSTOM_MENU_ORDER = "custom_menu_order";
+
+ /**
+ * Original hook name: customize_allowed_urls
+ */
+ public static final String CUSTOMIZE_ALLOWED_URLS = "customize_allowed_urls";
+
+ /**
+ * Original hook name: customize_changeset_branching
+ */
+ public static final String CUSTOMIZE_CHANGESET_BRANCHING = "customize_changeset_branching";
+
+ /**
+ * Original hook name: customize_changeset_save_data
+ */
+ public static final String CUSTOMIZE_CHANGESET_SAVE_DATA = "customize_changeset_save_data";
+
+ /**
+ * Original hook name: customize_control_active
+ */
+ public static final String CUSTOMIZE_CONTROL_ACTIVE = "customize_control_active";
+
+ /**
+ * Original hook name: customize_controls_enqueue_scripts
+ */
+ public static final String CUSTOMIZE_CONTROLS_ENQUEUE_SCRIPTS = "customize_controls_enqueue_scripts";
+
+ /**
+ * Original hook name: customize_controls_head
+ */
+ public static final String CUSTOMIZE_CONTROLS_HEAD = "customize_controls_head";
+
+ /**
+ * Original hook name: customize_controls_init
+ */
+ public static final String CUSTOMIZE_CONTROLS_INIT = "customize_controls_init";
+
+ /**
+ * Original hook name: customize_controls_print_footer_scripts
+ */
+ public static final String CUSTOMIZE_CONTROLS_PRINT_FOOTER_SCRIPTS = "customize_controls_print_footer_scripts";
+
+ /**
+ * Original hook name: customize_controls_print_scripts
+ */
+ public static final String CUSTOMIZE_CONTROLS_PRINT_SCRIPTS = "customize_controls_print_scripts";
+
+ /**
+ * Original hook name: customize_controls_print_styles
+ */
+ public static final String CUSTOMIZE_CONTROLS_PRINT_STYLES = "customize_controls_print_styles";
+
+ /**
+ * Original hook name: customize_dynamic_partial_args
+ */
+ public static final String CUSTOMIZE_DYNAMIC_PARTIAL_ARGS = "customize_dynamic_partial_args";
+
+ /**
+ * Original hook name: customize_dynamic_partial_class
+ */
+ public static final String CUSTOMIZE_DYNAMIC_PARTIAL_CLASS = "customize_dynamic_partial_class";
+
+ /**
+ * Original hook name: customize_dynamic_setting_args
+ */
+ public static final String CUSTOMIZE_DYNAMIC_SETTING_ARGS = "customize_dynamic_setting_args";
+
+ /**
+ * Original hook name: customize_dynamic_setting_class
+ */
+ public static final String CUSTOMIZE_DYNAMIC_SETTING_CLASS = "customize_dynamic_setting_class";
+
+ /**
+ * Original hook name: customize_load_themes
+ */
+ public static final String CUSTOMIZE_LOAD_THEMES = "customize_load_themes";
+
+ /**
+ * Original hook name: customize_loaded_components
+ */
+ public static final String CUSTOMIZE_LOADED_COMPONENTS = "customize_loaded_components";
+
+ /**
+ * Original hook name: customize_nav_menu_available_item_types
+ */
+ public static final String CUSTOMIZE_NAV_MENU_AVAILABLE_ITEM_TYPES = "customize_nav_menu_available_item_types";
+
+ /**
+ * Original hook name: customize_nav_menu_available_items
+ */
+ public static final String CUSTOMIZE_NAV_MENU_AVAILABLE_ITEMS = "customize_nav_menu_available_items";
+
+ /**
+ * Original hook name: customize_nav_menu_searched_items
+ */
+ public static final String CUSTOMIZE_NAV_MENU_SEARCHED_ITEMS = "customize_nav_menu_searched_items";
+
+ /**
+ * Original hook name: customize_panel_active
+ */
+ public static final String CUSTOMIZE_PANEL_ACTIVE = "customize_panel_active";
+
+ /**
+ * Original hook name: customize_partial_render
+ */
+ public static final String CUSTOMIZE_PARTIAL_RENDER = "customize_partial_render";
+
+ /**
+ * Original hook name: customize_partial_render_{$partial->id}
+ */
+ public static final String CUSTOMIZE_PARTIAL_RENDER_PARTIAL_ID = "customize_partial_render_{$partial->id}";
+
+ /**
+ * Original hook name: customize_post_value_set
+ */
+ public static final String CUSTOMIZE_POST_VALUE_SET = "customize_post_value_set";
+
+ /**
+ * Original hook name: customize_post_value_set_{$setting_id}
+ */
+ public static final String CUSTOMIZE_POST_VALUE_SET_SETTING_ID = "customize_post_value_set_{$setting_id}";
+
+ /**
+ * Original hook name: customize_preview_init
+ */
+ public static final String CUSTOMIZE_PREVIEW_INIT = "customize_preview_init";
+
+ /**
+ * Original hook name: customize_preview_{$this->id}
+ */
+ public static final String CUSTOMIZE_PREVIEW_THIS_ID = "customize_preview_{$this->id}";
+
+ /**
+ * Original hook name: customize_preview_{$this->type}
+ */
+ public static final String CUSTOMIZE_PREVIEW_THIS_TYPE = "customize_preview_{$this->type}";
+
+ /**
+ * Original hook name: customize_previewable_devices
+ */
+ public static final String CUSTOMIZE_PREVIEWABLE_DEVICES = "customize_previewable_devices";
+
+ /**
+ * Original hook name: customize_refresh_nonces
+ */
+ public static final String CUSTOMIZE_REFRESH_NONCES = "customize_refresh_nonces";
+
+ /**
+ * Original hook name: customize_register
+ */
+ public static final String CUSTOMIZE_REGISTER = "customize_register";
+
+ /**
+ * Original hook name: customize_render_control
+ */
+ public static final String CUSTOMIZE_RENDER_CONTROL = "customize_render_control";
+
+ /**
+ * Original hook name: customize_render_control_{$this->id}
+ */
+ public static final String CUSTOMIZE_RENDER_CONTROL_THIS_ID = "customize_render_control_{$this->id}";
+
+ /**
+ * Original hook name: customize_render_panel
+ */
+ public static final String CUSTOMIZE_RENDER_PANEL = "customize_render_panel";
+
+ /**
+ * Original hook name: customize_render_panel_{$this->id}
+ */
+ public static final String CUSTOMIZE_RENDER_PANEL_THIS_ID = "customize_render_panel_{$this->id}";
+
+ /**
+ * Original hook name: customize_render_partials_after
+ */
+ public static final String CUSTOMIZE_RENDER_PARTIALS_AFTER = "customize_render_partials_after";
+
+ /**
+ * Original hook name: customize_render_partials_before
+ */
+ public static final String CUSTOMIZE_RENDER_PARTIALS_BEFORE = "customize_render_partials_before";
+
+ /**
+ * Original hook name: customize_render_partials_response
+ */
+ public static final String CUSTOMIZE_RENDER_PARTIALS_RESPONSE = "customize_render_partials_response";
+
+ /**
+ * Original hook name: customize_render_section
+ */
+ public static final String CUSTOMIZE_RENDER_SECTION = "customize_render_section";
+
+ /**
+ * Original hook name: customize_render_section_{$this->id}
+ */
+ public static final String CUSTOMIZE_RENDER_SECTION_THIS_ID = "customize_render_section_{$this->id}";
+
+ /**
+ * Original hook name: customize_sanitize_js_{$this->id}
+ */
+ public static final String CUSTOMIZE_SANITIZE_JS_THIS_ID = "customize_sanitize_js_{$this->id}";
+
+ /**
+ * Original hook name: customize_sanitize_{$this->id}
+ */
+ public static final String CUSTOMIZE_SANITIZE_THIS_ID = "customize_sanitize_{$this->id}";
+
+ /**
+ * Original hook name: customize_save
+ */
+ public static final String CUSTOMIZE_SAVE = "customize_save";
+
+ /**
+ * Original hook name: customize_save_after
+ */
+ public static final String CUSTOMIZE_SAVE_AFTER = "customize_save_after";
+
+ /**
+ * Original hook name: customize_save_response
+ */
+ public static final String CUSTOMIZE_SAVE_RESPONSE = "customize_save_response";
+
+ /**
+ * Original hook name: customize_save_validation_before
+ */
+ public static final String CUSTOMIZE_SAVE_VALIDATION_BEFORE = "customize_save_validation_before";
+
+ /**
+ * Original hook name: customize_save_{$id_base}
+ */
+ public static final String CUSTOMIZE_SAVE_ID_BASE = "customize_save_{$id_base}";
+
+ /**
+ * Original hook name: customize_save_{$this->id_data[base]}
+ */
+ public static final String CUSTOMIZE_SAVE_THIS_ID_DATA_BASE = "customize_save_{$this->id_data[base]}";
+
+ /**
+ * Original hook name: customize_section_active
+ */
+ public static final String CUSTOMIZE_SECTION_ACTIVE = "customize_section_active";
+
+ /**
+ * Original hook name: customize_update_{$this->type}
+ */
+ public static final String CUSTOMIZE_UPDATE_THIS_TYPE = "customize_update_{$this->type}";
+
+ /**
+ * Original hook name: customize_validate_{$setting->id}
+ */
+ public static final String CUSTOMIZE_VALIDATE_SETTING_ID = "customize_validate_{$setting->id}";
+
+ /**
+ * Original hook name: customize_validate_{$this->id}
+ */
+ public static final String CUSTOMIZE_VALIDATE_THIS_ID = "customize_validate_{$this->id}";
+
+ /**
+ * Original hook name: customize_value_{$id_base}
+ */
+ public static final String CUSTOMIZE_VALUE_ID_BASE = "customize_value_{$id_base}";
+
+ /**
+ * Original hook name: customize_value_{$this->id_data[base]}
+ */
+ public static final String CUSTOMIZE_VALUE_THIS_ID_DATA_BASE = "customize_value_{$this->id_data[base]}";
+
+ /**
+ * Original hook name: customizer_widgets_section_args
+ */
+ public static final String CUSTOMIZER_WIDGETS_SECTION_ARGS = "customizer_widgets_section_args";
+
+ /**
+ * Original hook name: dashboard_count_sentence
+ */
+ public static final String DASHBOARD_COUNT_SENTENCE = "dashboard_count_sentence";
+
+ /**
+ * Original hook name: dashboard_glance_items
+ */
+ public static final String DASHBOARD_GLANCE_ITEMS = "dashboard_glance_items";
+
+ /**
+ * Original hook name: dashboard_incoming_links_feed
+ */
+ public static final String DASHBOARD_INCOMING_LINKS_FEED = "dashboard_incoming_links_feed";
+
+ /**
+ * Original hook name: dashboard_incoming_links_link
+ */
+ public static final String DASHBOARD_INCOMING_LINKS_LINK = "dashboard_incoming_links_link";
+
+ /**
+ * Original hook name: dashboard_primary_feed
+ */
+ public static final String DASHBOARD_PRIMARY_FEED = "dashboard_primary_feed";
+
+ /**
+ * Original hook name: dashboard_primary_link
+ */
+ public static final String DASHBOARD_PRIMARY_LINK = "dashboard_primary_link";
+
+ /**
+ * Original hook name: dashboard_primary_title
+ */
+ public static final String DASHBOARD_PRIMARY_TITLE = "dashboard_primary_title";
+
+ /**
+ * Original hook name: dashboard_recent_drafts_query_args
+ */
+ public static final String DASHBOARD_RECENT_DRAFTS_QUERY_ARGS = "dashboard_recent_drafts_query_args";
+
+ /**
+ * Original hook name: dashboard_recent_posts_query_args
+ */
+ public static final String DASHBOARD_RECENT_POSTS_QUERY_ARGS = "dashboard_recent_posts_query_args";
+
+ /**
+ * Original hook name: dashboard_secondary_feed
+ */
+ public static final String DASHBOARD_SECONDARY_FEED = "dashboard_secondary_feed";
+
+ /**
+ * Original hook name: dashboard_secondary_items
+ */
+ public static final String DASHBOARD_SECONDARY_ITEMS = "dashboard_secondary_items";
+
+ /**
+ * Original hook name: dashboard_secondary_link
+ */
+ public static final String DASHBOARD_SECONDARY_LINK = "dashboard_secondary_link";
+
+ /**
+ * Original hook name: dashboard_secondary_title
+ */
+ public static final String DASHBOARD_SECONDARY_TITLE = "dashboard_secondary_title";
+
+ /**
+ * Original hook name: dashmenu
+ */
+ public static final String DASHMENU = "dashmenu";
+
+ /**
+ * Original hook name: date_formats
+ */
+ public static final String DATE_FORMATS = "date_formats";
+
+ /**
+ * Original hook name: date_i18n
+ */
+ public static final String DATE_I18N = "date_i18n";
+
+ /**
+ * Original hook name: date_query_valid_columns
+ */
+ public static final String DATE_QUERY_VALID_COLUMNS = "date_query_valid_columns";
+
+ /**
+ * Original hook name: date_rewrite_rules
+ */
+ public static final String DATE_REWRITE_RULES = "date_rewrite_rules";
+
+ /**
+ * Original hook name: day_link
+ */
+ public static final String DAY_LINK = "day_link";
+
+ /**
+ * Original hook name: dbdelta_create_queries
+ */
+ public static final String DBDELTA_CREATE_QUERIES = "dbdelta_create_queries";
+
+ /**
+ * Original hook name: dbdelta_insert_queries
+ */
+ public static final String DBDELTA_INSERT_QUERIES = "dbdelta_insert_queries";
+
+ /**
+ * Original hook name: dbdelta_queries
+ */
+ public static final String DBDELTA_QUERIES = "dbdelta_queries";
+
+ /**
+ * Original hook name: dbx_page_advanced
+ */
+ public static final String DBX_PAGE_ADVANCED = "dbx_page_advanced";
+
+ /**
+ * Original hook name: dbx_page_sidebar
+ */
+ public static final String DBX_PAGE_SIDEBAR = "dbx_page_sidebar";
+
+ /**
+ * Original hook name: dbx_post_advanced
+ */
+ public static final String DBX_POST_ADVANCED = "dbx_post_advanced";
+
+ /**
+ * Original hook name: dbx_post_sidebar
+ */
+ public static final String DBX_POST_SIDEBAR = "dbx_post_sidebar";
+
+ /**
+ * Original hook name: deactivate_blog
+ */
+ public static final String DEACTIVATE_BLOG = "deactivate_blog";
+
+ /**
+ * Original hook name: deactivate_plugin
+ */
+ public static final String DEACTIVATE_PLUGIN = "deactivate_plugin";
+
+ /**
+ * Original hook name: deactivate_{$plugin}
+ */
+ public static final String DEACTIVATE_PLUGIN_2 = "deactivate_{$plugin}";
+
+ /**
+ * Original hook name: deactivated_plugin
+ */
+ public static final String DEACTIVATED_PLUGIN = "deactivated_plugin";
+
+ /**
+ * Original hook name: debug_information
+ */
+ public static final String DEBUG_INFORMATION = "debug_information";
+
+ /**
+ * Original hook name: default_avatar_select
+ */
+ public static final String DEFAULT_AVATAR_SELECT = "default_avatar_select";
+
+ /**
+ * Original hook name: default_category_post_types
+ */
+ public static final String DEFAULT_CATEGORY_POST_TYPES = "default_category_post_types";
+
+ /**
+ * Original hook name: default_content
+ */
+ public static final String DEFAULT_CONTENT = "default_content";
+
+ /**
+ * Original hook name: default_contextual_help
+ */
+ public static final String DEFAULT_CONTEXTUAL_HELP = "default_contextual_help";
+
+ /**
+ * Original hook name: default_excerpt
+ */
+ public static final String DEFAULT_EXCERPT = "default_excerpt";
+
+ /**
+ * Original hook name: default_feed
+ */
+ public static final String DEFAULT_FEED = "default_feed";
+
+ /**
+ * Original hook name: default_hidden_columns
+ */
+ public static final String DEFAULT_HIDDEN_COLUMNS = "default_hidden_columns";
+
+ /**
+ * Original hook name: default_hidden_meta_boxes
+ */
+ public static final String DEFAULT_HIDDEN_META_BOXES = "default_hidden_meta_boxes";
+
+ /**
+ * Original hook name: default_option_{$option}
+ */
+ public static final String DEFAULT_OPTION_OPTION = "default_option_{$option}";
+
+ /**
+ * Original hook name: default_page_template_title
+ */
+ public static final String DEFAULT_PAGE_TEMPLATE_TITLE = "default_page_template_title";
+
+ /**
+ * Original hook name: default_site_option_{$option}
+ */
+ public static final String DEFAULT_SITE_OPTION_OPTION = "default_site_option_{$option}";
+
+ /**
+ * Original hook name: default_template_types
+ */
+ public static final String DEFAULT_TEMPLATE_TYPES = "default_template_types";
+
+ /**
+ * Original hook name: default_title
+ */
+ public static final String DEFAULT_TITLE = "default_title";
+
+ /**
+ * Original hook name: default_wp_template_part_areas
+ */
+ public static final String DEFAULT_WP_TEMPLATE_PART_AREAS = "default_wp_template_part_areas";
+
+ /**
+ * Original hook name: default_{$meta_type}_metadata
+ */
+ public static final String DEFAULT_META_TYPE_METADATA = "default_{$meta_type}_metadata";
+
+ /**
+ * Original hook name: delete_attachment
+ */
+ public static final String DELETE_ATTACHMENT = "delete_attachment";
+
+ /**
+ * Original hook name: delete_blog
+ */
+ public static final String DELETE_BLOG = "delete_blog";
+
+ /**
+ * Original hook name: delete_category
+ */
+ public static final String DELETE_CATEGORY = "delete_category";
+
+ /**
+ * Original hook name: delete_comment
+ */
+ public static final String DELETE_COMMENT = "delete_comment";
+
+ /**
+ * Original hook name: delete_commentmeta
+ */
+ public static final String DELETE_COMMENTMETA = "delete_commentmeta";
+
+ /**
+ * Original hook name: delete_link
+ */
+ public static final String DELETE_LINK = "delete_link";
+
+ /**
+ * Original hook name: delete_option
+ */
+ public static final String DELETE_OPTION = "delete_option";
+
+ /**
+ * Original hook name: delete_option_{$option}
+ */
+ public static final String DELETE_OPTION_OPTION = "delete_option_{$option}";
+
+ /**
+ * Original hook name: delete_plugin
+ */
+ public static final String DELETE_PLUGIN = "delete_plugin";
+
+ /**
+ * Original hook name: delete_post
+ */
+ public static final String DELETE_POST = "delete_post";
+
+ /**
+ * Original hook name: delete_post_{$post->post_type}
+ */
+ public static final String DELETE_POST_POST_POST_TYPE = "delete_post_{$post->post_type}";
+
+ /**
+ * Original hook name: delete_postmeta
+ */
+ public static final String DELETE_POSTMETA = "delete_postmeta";
+
+ /**
+ * Original hook name: delete_site_email_content
+ */
+ public static final String DELETE_SITE_EMAIL_CONTENT = "delete_site_email_content";
+
+ /**
+ * Original hook name: delete_site_option
+ */
+ public static final String DELETE_SITE_OPTION = "delete_site_option";
+
+ /**
+ * Original hook name: delete_site_option_{$key}
+ */
+ public static final String DELETE_SITE_OPTION_KEY = "delete_site_option_{$key}";
+
+ /**
+ * Original hook name: delete_site_option_{$option}
+ */
+ public static final String DELETE_SITE_OPTION_OPTION = "delete_site_option_{$option}";
+
+ /**
+ * Original hook name: delete_site_transient_{$transient}
+ */
+ public static final String DELETE_SITE_TRANSIENT_TRANSIENT = "delete_site_transient_{$transient}";
+
+ /**
+ * Original hook name: delete_term
+ */
+ public static final String DELETE_TERM = "delete_term";
+
+ /**
+ * Original hook name: delete_term_relationships
+ */
+ public static final String DELETE_TERM_RELATIONSHIPS = "delete_term_relationships";
+
+ /**
+ * Original hook name: delete_term_taxonomy
+ */
+ public static final String DELETE_TERM_TAXONOMY = "delete_term_taxonomy";
+
+ /**
+ * Original hook name: delete_theme
+ */
+ public static final String DELETE_THEME = "delete_theme";
+
+ /**
+ * Original hook name: delete_transient_{$transient}
+ */
+ public static final String DELETE_TRANSIENT_TRANSIENT = "delete_transient_{$transient}";
+
+ /**
+ * Original hook name: delete_user
+ */
+ public static final String DELETE_USER = "delete_user";
+
+ /**
+ * Original hook name: delete_user_form
+ */
+ public static final String DELETE_USER_FORM = "delete_user_form";
+
+ /**
+ * Original hook name: delete_usermeta
+ */
+ public static final String DELETE_USERMETA = "delete_usermeta";
+
+ /**
+ * Original hook name: delete_widget
+ */
+ public static final String DELETE_WIDGET = "delete_widget";
+
+ /**
+ * Original hook name: delete_{$meta_type}_meta
+ */
+ public static final String DELETE_META_TYPE_META = "delete_{$meta_type}_meta";
+
+ /**
+ * Original hook name: delete_{$meta_type}_metadata
+ */
+ public static final String DELETE_META_TYPE_METADATA = "delete_{$meta_type}_metadata";
+
+ /**
+ * Original hook name: delete_{$meta_type}_metadata_by_mid
+ */
+ public static final String DELETE_META_TYPE_METADATA_BY_MID = "delete_{$meta_type}_metadata_by_mid";
+
+ /**
+ * Original hook name: delete_{$meta_type}meta
+ */
+ public static final String DELETE_META_TYPEMETA = "delete_{$meta_type}meta";
+
+ /**
+ * Original hook name: delete_{$taxonomy}
+ */
+ public static final String DELETE_TAXONOMY = "delete_{$taxonomy}";
+
+ /**
+ * Original hook name: deleted_blog
+ */
+ public static final String DELETED_BLOG = "deleted_blog";
+
+ /**
+ * Original hook name: deleted_comment
+ */
+ public static final String DELETED_COMMENT = "deleted_comment";
+
+ /**
+ * Original hook name: deleted_commentmeta
+ */
+ public static final String DELETED_COMMENTMETA = "deleted_commentmeta";
+
+ /**
+ * Original hook name: deleted_link
+ */
+ public static final String DELETED_LINK = "deleted_link";
+
+ /**
+ * Original hook name: deleted_option
+ */
+ public static final String DELETED_OPTION = "deleted_option";
+
+ /**
+ * Original hook name: deleted_plugin
+ */
+ public static final String DELETED_PLUGIN = "deleted_plugin";
+
+ /**
+ * Original hook name: deleted_post
+ */
+ public static final String DELETED_POST = "deleted_post";
+
+ /**
+ * Original hook name: deleted_post_{$post->post_type}
+ */
+ public static final String DELETED_POST_POST_POST_TYPE = "deleted_post_{$post->post_type}";
+
+ /**
+ * Original hook name: deleted_postmeta
+ */
+ public static final String DELETED_POSTMETA = "deleted_postmeta";
+
+ /**
+ * Original hook name: deleted_site_transient
+ */
+ public static final String DELETED_SITE_TRANSIENT = "deleted_site_transient";
+
+ /**
+ * Original hook name: deleted_term_relationships
+ */
+ public static final String DELETED_TERM_RELATIONSHIPS = "deleted_term_relationships";
+
+ /**
+ * Original hook name: deleted_term_taxonomy
+ */
+ public static final String DELETED_TERM_TAXONOMY = "deleted_term_taxonomy";
+
+ /**
+ * Original hook name: deleted_theme
+ */
+ public static final String DELETED_THEME = "deleted_theme";
+
+ /**
+ * Original hook name: deleted_transient
+ */
+ public static final String DELETED_TRANSIENT = "deleted_transient";
+
+ /**
+ * Original hook name: deleted_user
+ */
+ public static final String DELETED_USER = "deleted_user";
+
+ /**
+ * Original hook name: deleted_usermeta
+ */
+ public static final String DELETED_USERMETA = "deleted_usermeta";
+
+ /**
+ * Original hook name: deleted_{$meta_type}_meta
+ */
+ public static final String DELETED_META_TYPE_META = "deleted_{$meta_type}_meta";
+
+ /**
+ * Original hook name: deleted_{$meta_type}meta
+ */
+ public static final String DELETED_META_TYPEMETA = "deleted_{$meta_type}meta";
+
+ /**
+ * Original hook name: deprecated_argument_run
+ */
+ public static final String DEPRECATED_ARGUMENT_RUN = "deprecated_argument_run";
+
+ /**
+ * Original hook name: deprecated_argument_trigger_error
+ */
+ public static final String DEPRECATED_ARGUMENT_TRIGGER_ERROR = "deprecated_argument_trigger_error";
+
+ /**
+ * Original hook name: deprecated_class_run
+ */
+ public static final String DEPRECATED_CLASS_RUN = "deprecated_class_run";
+
+ /**
+ * Original hook name: deprecated_class_trigger_error
+ */
+ public static final String DEPRECATED_CLASS_TRIGGER_ERROR = "deprecated_class_trigger_error";
+
+ /**
+ * Original hook name: deprecated_constructor_run
+ */
+ public static final String DEPRECATED_CONSTRUCTOR_RUN = "deprecated_constructor_run";
+
+ /**
+ * Original hook name: deprecated_constructor_trigger_error
+ */
+ public static final String DEPRECATED_CONSTRUCTOR_TRIGGER_ERROR = "deprecated_constructor_trigger_error";
+
+ /**
+ * Original hook name: deprecated_file_included
+ */
+ public static final String DEPRECATED_FILE_INCLUDED = "deprecated_file_included";
+
+ /**
+ * Original hook name: deprecated_file_trigger_error
+ */
+ public static final String DEPRECATED_FILE_TRIGGER_ERROR = "deprecated_file_trigger_error";
+
+ /**
+ * Original hook name: deprecated_function_run
+ */
+ public static final String DEPRECATED_FUNCTION_RUN = "deprecated_function_run";
+
+ /**
+ * Original hook name: deprecated_function_trigger_error
+ */
+ public static final String DEPRECATED_FUNCTION_TRIGGER_ERROR = "deprecated_function_trigger_error";
+
+ /**
+ * Original hook name: deprecated_hook_run
+ */
+ public static final String DEPRECATED_HOOK_RUN = "deprecated_hook_run";
+
+ /**
+ * Original hook name: deprecated_hook_trigger_error
+ */
+ public static final String DEPRECATED_HOOK_TRIGGER_ERROR = "deprecated_hook_trigger_error";
+
+ /**
+ * Original hook name: determine_current_user
+ */
+ public static final String DETERMINE_CURRENT_USER = "determine_current_user";
+
+ /**
+ * Original hook name: determine_locale
+ */
+ public static final String DETERMINE_LOCALE = "determine_locale";
+
+ /**
+ * Original hook name: disable_captions
+ */
+ public static final String DISABLE_CAPTIONS = "disable_captions";
+
+ /**
+ * Original hook name: disable_categories_dropdown
+ */
+ public static final String DISABLE_CATEGORIES_DROPDOWN = "disable_categories_dropdown";
+
+ /**
+ * Original hook name: disable_formats_dropdown
+ */
+ public static final String DISABLE_FORMATS_DROPDOWN = "disable_formats_dropdown";
+
+ /**
+ * Original hook name: disable_months_dropdown
+ */
+ public static final String DISABLE_MONTHS_DROPDOWN = "disable_months_dropdown";
+
+ /**
+ * Original hook name: display_media_states
+ */
+ public static final String DISPLAY_MEDIA_STATES = "display_media_states";
+
+ /**
+ * Original hook name: display_post_states
+ */
+ public static final String DISPLAY_POST_STATES = "display_post_states";
+
+ /**
+ * Original hook name: display_site_states
+ */
+ public static final String DISPLAY_SITE_STATES = "display_site_states";
+
+ /**
+ * Original hook name: do_all_pings
+ */
+ public static final String DO_ALL_PINGS = "do_all_pings";
+
+ /**
+ * Original hook name: do_favicon
+ */
+ public static final String DO_FAVICON = "do_favicon";
+
+ /**
+ * Original hook name: do_faviconico
+ */
+ public static final String DO_FAVICONICO = "do_faviconico";
+
+ /**
+ * Original hook name: do_feed_{$feed}
+ */
+ public static final String DO_FEED_FEED = "do_feed_{$feed}";
+
+ /**
+ * Original hook name: do_meta_boxes
+ */
+ public static final String DO_META_BOXES = "do_meta_boxes";
+
+ /**
+ * Original hook name: do_mu_upgrade
+ */
+ public static final String DO_MU_UPGRADE = "do_mu_upgrade";
+
+ /**
+ * Original hook name: do_parse_request
+ */
+ public static final String DO_PARSE_REQUEST = "do_parse_request";
+
+ /**
+ * Original hook name: do_redirect_guess_404_permalink
+ */
+ public static final String DO_REDIRECT_GUESS_404_PERMALINK = "do_redirect_guess_404_permalink";
+
+ /**
+ * Original hook name: do_robots
+ */
+ public static final String DO_ROBOTS = "do_robots";
+
+ /**
+ * Original hook name: do_robotstxt
+ */
+ public static final String DO_ROBOTSTXT = "do_robotstxt";
+
+ /**
+ * Original hook name: do_shortcode_tag
+ */
+ public static final String DO_SHORTCODE_TAG = "do_shortcode_tag";
+
+ /**
+ * Original hook name: document_title
+ */
+ public static final String DOCUMENT_TITLE = "document_title";
+
+ /**
+ * Original hook name: document_title_parts
+ */
+ public static final String DOCUMENT_TITLE_PARTS = "document_title_parts";
+
+ /**
+ * Original hook name: document_title_separator
+ */
+ public static final String DOCUMENT_TITLE_SEPARATOR = "document_title_separator";
+
+ /**
+ * Original hook name: documentation_ignore_functions
+ */
+ public static final String DOCUMENTATION_IGNORE_FUNCTIONS = "documentation_ignore_functions";
+
+ /**
+ * Original hook name: doing_it_wrong_run
+ */
+ public static final String DOING_IT_WRONG_RUN = "doing_it_wrong_run";
+
+ /**
+ * Original hook name: doing_it_wrong_trigger_error
+ */
+ public static final String DOING_IT_WRONG_TRIGGER_ERROR = "doing_it_wrong_trigger_error";
+
+ /**
+ * Original hook name: domain_exists
+ */
+ public static final String DOMAIN_EXISTS = "domain_exists";
+
+ /**
+ * Original hook name: download_url_error_max_body_size
+ */
+ public static final String DOWNLOAD_URL_ERROR_MAX_BODY_SIZE = "download_url_error_max_body_size";
+
+ /**
+ * Original hook name: duplicate_comment_id
+ */
+ public static final String DUPLICATE_COMMENT_ID = "duplicate_comment_id";
+
+ /**
+ * Original hook name: dynamic_sidebar
+ */
+ public static final String DYNAMIC_SIDEBAR = "dynamic_sidebar";
+
+ /**
+ * Original hook name: dynamic_sidebar_after
+ */
+ public static final String DYNAMIC_SIDEBAR_AFTER = "dynamic_sidebar_after";
+
+ /**
+ * Original hook name: dynamic_sidebar_before
+ */
+ public static final String DYNAMIC_SIDEBAR_BEFORE = "dynamic_sidebar_before";
+
+ /**
+ * Original hook name: dynamic_sidebar_has_widgets
+ */
+ public static final String DYNAMIC_SIDEBAR_HAS_WIDGETS = "dynamic_sidebar_has_widgets";
+
+ /**
+ * Original hook name: dynamic_sidebar_params
+ */
+ public static final String DYNAMIC_SIDEBAR_PARAMS = "dynamic_sidebar_params";
+
+ /**
+ * Original hook name: edit_attachment
+ */
+ public static final String EDIT_ATTACHMENT = "edit_attachment";
+
+ /**
+ * Original hook name: edit_bookmark_link
+ */
+ public static final String EDIT_BOOKMARK_LINK = "edit_bookmark_link";
+
+ /**
+ * Original hook name: edit_categories_per_page
+ */
+ public static final String EDIT_CATEGORIES_PER_PAGE = "edit_categories_per_page";
+
+ /**
+ * Original hook name: edit_category
+ */
+ public static final String EDIT_CATEGORY = "edit_category";
+
+ /**
+ * Original hook name: edit_category_form
+ */
+ public static final String EDIT_CATEGORY_FORM = "edit_category_form";
+
+ /**
+ * Original hook name: edit_category_form_fields
+ */
+ public static final String EDIT_CATEGORY_FORM_FIELDS = "edit_category_form_fields";
+
+ /**
+ * Original hook name: edit_category_form_pre
+ */
+ public static final String EDIT_CATEGORY_FORM_PRE = "edit_category_form_pre";
+
+ /**
+ * Original hook name: edit_comment
+ */
+ public static final String EDIT_COMMENT = "edit_comment";
+
+ /**
+ * Original hook name: edit_comment_link
+ */
+ public static final String EDIT_COMMENT_LINK = "edit_comment_link";
+
+ /**
+ * Original hook name: edit_comment_misc_actions
+ */
+ public static final String EDIT_COMMENT_MISC_ACTIONS = "edit_comment_misc_actions";
+
+ /**
+ * Original hook name: edit_custom_thumbnail_sizes
+ */
+ public static final String EDIT_CUSTOM_THUMBNAIL_SIZES = "edit_custom_thumbnail_sizes";
+
+ /**
+ * Original hook name: edit_form_advanced
+ */
+ public static final String EDIT_FORM_ADVANCED = "edit_form_advanced";
+
+ /**
+ * Original hook name: edit_form_after_editor
+ */
+ public static final String EDIT_FORM_AFTER_EDITOR = "edit_form_after_editor";
+
+ /**
+ * Original hook name: edit_form_after_title
+ */
+ public static final String EDIT_FORM_AFTER_TITLE = "edit_form_after_title";
+
+ /**
+ * Original hook name: edit_form_before_permalink
+ */
+ public static final String EDIT_FORM_BEFORE_PERMALINK = "edit_form_before_permalink";
+
+ /**
+ * Original hook name: edit_form_top
+ */
+ public static final String EDIT_FORM_TOP = "edit_form_top";
+
+ /**
+ * Original hook name: edit_link
+ */
+ public static final String EDIT_LINK = "edit_link";
+
+ /**
+ * Original hook name: edit_link_category_form
+ */
+ public static final String EDIT_LINK_CATEGORY_FORM = "edit_link_category_form";
+
+ /**
+ * Original hook name: edit_link_category_form_fields
+ */
+ public static final String EDIT_LINK_CATEGORY_FORM_FIELDS = "edit_link_category_form_fields";
+
+ /**
+ * Original hook name: edit_link_category_form_pre
+ */
+ public static final String EDIT_LINK_CATEGORY_FORM_PRE = "edit_link_category_form_pre";
+
+ /**
+ * Original hook name: edit_page_form
+ */
+ public static final String EDIT_PAGE_FORM = "edit_page_form";
+
+ /**
+ * Original hook name: edit_pages_per_page
+ */
+ public static final String EDIT_PAGES_PER_PAGE = "edit_pages_per_page";
+
+ /**
+ * Original hook name: edit_post
+ */
+ public static final String EDIT_POST = "edit_post";
+
+ /**
+ * Original hook name: edit_post_link
+ */
+ public static final String EDIT_POST_LINK = "edit_post_link";
+
+ /**
+ * Original hook name: edit_post_{$field}
+ */
+ public static final String EDIT_POST_FIELD = "edit_post_{$field}";
+
+ /**
+ * Original hook name: edit_post_{$post->post_type}
+ */
+ public static final String EDIT_POST_POST_POST_TYPE = "edit_post_{$post->post_type}";
+
+ /**
+ * Original hook name: edit_posts_per_page
+ */
+ public static final String EDIT_POSTS_PER_PAGE = "edit_posts_per_page";
+
+ /**
+ * Original hook name: edit_profile_url
+ */
+ public static final String EDIT_PROFILE_URL = "edit_profile_url";
+
+ /**
+ * Original hook name: edit_tag_form
+ */
+ public static final String EDIT_TAG_FORM = "edit_tag_form";
+
+ /**
+ * Original hook name: edit_tag_form_fields
+ */
+ public static final String EDIT_TAG_FORM_FIELDS = "edit_tag_form_fields";
+
+ /**
+ * Original hook name: edit_tag_form_pre
+ */
+ public static final String EDIT_TAG_FORM_PRE = "edit_tag_form_pre";
+
+ /**
+ * Original hook name: edit_tag_link
+ */
+ public static final String EDIT_TAG_LINK = "edit_tag_link";
+
+ /**
+ * Original hook name: edit_tags_per_page
+ */
+ public static final String EDIT_TAGS_PER_PAGE = "edit_tags_per_page";
+
+ /**
+ * Original hook name: edit_term
+ */
+ public static final String EDIT_TERM = "edit_term";
+
+ /**
+ * Original hook name: edit_term_link
+ */
+ public static final String EDIT_TERM_LINK = "edit_term_link";
+
+ /**
+ * Original hook name: edit_term_taxonomies
+ */
+ public static final String EDIT_TERM_TAXONOMIES = "edit_term_taxonomies";
+
+ /**
+ * Original hook name: edit_term_taxonomy
+ */
+ public static final String EDIT_TERM_TAXONOMY = "edit_term_taxonomy";
+
+ /**
+ * Original hook name: edit_term_{$field}
+ */
+ public static final String EDIT_TERM_FIELD = "edit_term_{$field}";
+
+ /**
+ * Original hook name: edit_terms
+ */
+ public static final String EDIT_TERMS = "edit_terms";
+
+ /**
+ * Original hook name: edit_user_created_user
+ */
+ public static final String EDIT_USER_CREATED_USER = "edit_user_created_user";
+
+ /**
+ * Original hook name: edit_user_profile
+ */
+ public static final String EDIT_USER_PROFILE = "edit_user_profile";
+
+ /**
+ * Original hook name: edit_user_profile_update
+ */
+ public static final String EDIT_USER_PROFILE_UPDATE = "edit_user_profile_update";
+
+ /**
+ * Original hook name: edit_user_{$field}
+ */
+ public static final String EDIT_USER_FIELD = "edit_user_{$field}";
+
+ /**
+ * Original hook name: edit_{$field}
+ */
+ public static final String EDIT_FIELD = "edit_{$field}";
+
+ /**
+ * Original hook name: edit_{$post_type}_per_page
+ */
+ public static final String EDIT_POST_TYPE_PER_PAGE = "edit_{$post_type}_per_page";
+
+ /**
+ * Original hook name: edit_{$taxonomy}
+ */
+ public static final String EDIT_TAXONOMY = "edit_{$taxonomy}";
+
+ /**
+ * Original hook name: edit_{$taxonomy}_per_page
+ */
+ public static final String EDIT_TAXONOMY_PER_PAGE = "edit_{$taxonomy}_per_page";
+
+ /**
+ * Original hook name: edit_{$taxonomy}_{$field}
+ */
+ public static final String EDIT_TAXONOMY_FIELD = "edit_{$taxonomy}_{$field}";
+
+ /**
+ * Original hook name: editable_extensions
+ */
+ public static final String EDITABLE_EXTENSIONS = "editable_extensions";
+
+ /**
+ * Original hook name: editable_roles
+ */
+ public static final String EDITABLE_ROLES = "editable_roles";
+
+ /**
+ * Original hook name: editable_slug
+ */
+ public static final String EDITABLE_SLUG = "editable_slug";
+
+ /**
+ * Original hook name: edited_category
+ */
+ public static final String EDITED_CATEGORY = "edited_category";
+
+ /**
+ * Original hook name: edited_term
+ */
+ public static final String EDITED_TERM = "edited_term";
+
+ /**
+ * Original hook name: edited_term_taxonomies
+ */
+ public static final String EDITED_TERM_TAXONOMIES = "edited_term_taxonomies";
+
+ /**
+ * Original hook name: edited_term_taxonomy
+ */
+ public static final String EDITED_TERM_TAXONOMY = "edited_term_taxonomy";
+
+ /**
+ * Original hook name: edited_terms
+ */
+ public static final String EDITED_TERMS = "edited_terms";
+
+ /**
+ * Original hook name: edited_{$taxonomy}
+ */
+ public static final String EDITED_TAXONOMY = "edited_{$taxonomy}";
+
+ /**
+ * Original hook name: editor_max_image_size
+ */
+ public static final String EDITOR_MAX_IMAGE_SIZE = "editor_max_image_size";
+
+ /**
+ * Original hook name: editor_stylesheets
+ */
+ public static final String EDITOR_STYLESHEETS = "editor_stylesheets";
+
+ /**
+ * Original hook name: email_change_email
+ */
+ public static final String EMAIL_CHANGE_EMAIL = "email_change_email";
+
+ /**
+ * Original hook name: email_exists
+ */
+ public static final String EMAIL_EXISTS = "email_exists";
+
+ /**
+ * Original hook name: embed_cache_oembed_types
+ */
+ public static final String EMBED_CACHE_OEMBED_TYPES = "embed_cache_oembed_types";
+
+ /**
+ * Original hook name: embed_content
+ */
+ public static final String EMBED_CONTENT = "embed_content";
+
+ /**
+ * Original hook name: embed_content_meta
+ */
+ public static final String EMBED_CONTENT_META = "embed_content_meta";
+
+ /**
+ * Original hook name: embed_defaults
+ */
+ public static final String EMBED_DEFAULTS = "embed_defaults";
+
+ /**
+ * Original hook name: embed_footer
+ */
+ public static final String EMBED_FOOTER = "embed_footer";
+
+ /**
+ * Original hook name: embed_googlevideo
+ */
+ public static final String EMBED_GOOGLEVIDEO = "embed_googlevideo";
+
+ /**
+ * Original hook name: embed_handler_html
+ */
+ public static final String EMBED_HANDLER_HTML = "embed_handler_html";
+
+ /**
+ * Original hook name: embed_head
+ */
+ public static final String EMBED_HEAD = "embed_head";
+
+ /**
+ * Original hook name: embed_html
+ */
+ public static final String EMBED_HTML = "embed_html";
+
+ /**
+ * Original hook name: embed_maybe_make_link
+ */
+ public static final String EMBED_MAYBE_MAKE_LINK = "embed_maybe_make_link";
+
+ /**
+ * Original hook name: embed_oembed_discover
+ */
+ public static final String EMBED_OEMBED_DISCOVER = "embed_oembed_discover";
+
+ /**
+ * Original hook name: embed_oembed_html
+ */
+ public static final String EMBED_OEMBED_HTML = "embed_oembed_html";
+
+ /**
+ * Original hook name: embed_polldaddy
+ */
+ public static final String EMBED_POLLDADDY = "embed_polldaddy";
+
+ /**
+ * Original hook name: embed_site_title_html
+ */
+ public static final String EMBED_SITE_TITLE_HTML = "embed_site_title_html";
+
+ /**
+ * Original hook name: embed_template
+ */
+ public static final String EMBED_TEMPLATE = "embed_template";
+
+ /**
+ * Original hook name: embed_thumbnail_id
+ */
+ public static final String EMBED_THUMBNAIL_ID = "embed_thumbnail_id";
+
+ /**
+ * Original hook name: embed_thumbnail_image_shape
+ */
+ public static final String EMBED_THUMBNAIL_IMAGE_SHAPE = "embed_thumbnail_image_shape";
+
+ /**
+ * Original hook name: embed_thumbnail_image_size
+ */
+ public static final String EMBED_THUMBNAIL_IMAGE_SIZE = "embed_thumbnail_image_size";
+
+ /**
+ * Original hook name: emoji_ext
+ */
+ public static final String EMOJI_EXT = "emoji_ext";
+
+ /**
+ * Original hook name: emoji_svg_ext
+ */
+ public static final String EMOJI_SVG_EXT = "emoji_svg_ext";
+
+ /**
+ * Original hook name: emoji_svg_url
+ */
+ public static final String EMOJI_SVG_URL = "emoji_svg_url";
+
+ /**
+ * Original hook name: emoji_url
+ */
+ public static final String EMOJI_URL = "emoji_url";
+
+ /**
+ * Original hook name: enable_edit_any_user_configuration
+ */
+ public static final String ENABLE_EDIT_ANY_USER_CONFIGURATION = "enable_edit_any_user_configuration";
+
+ /**
+ * Original hook name: enable_live_network_counts
+ */
+ public static final String ENABLE_LIVE_NETWORK_COUNTS = "enable_live_network_counts";
+
+ /**
+ * Original hook name: enable_loading_advanced_cache_dropin
+ */
+ public static final String ENABLE_LOADING_ADVANCED_CACHE_DROPIN = "enable_loading_advanced_cache_dropin";
+
+ /**
+ * Original hook name: enable_loading_object_cache_dropin
+ */
+ public static final String ENABLE_LOADING_OBJECT_CACHE_DROPIN = "enable_loading_object_cache_dropin";
+
+ /**
+ * Original hook name: enable_login_autofocus
+ */
+ public static final String ENABLE_LOGIN_AUTOFOCUS = "enable_login_autofocus";
+
+ /**
+ * Original hook name: enable_maintenance_mode
+ */
+ public static final String ENABLE_MAINTENANCE_MODE = "enable_maintenance_mode";
+
+ /**
+ * Original hook name: enable_post_by_email_configuration
+ */
+ public static final String ENABLE_POST_BY_EMAIL_CONFIGURATION = "enable_post_by_email_configuration";
+
+ /**
+ * Original hook name: enable_press_this_media_discovery
+ */
+ public static final String ENABLE_PRESS_THIS_MEDIA_DISCOVERY = "enable_press_this_media_discovery";
+
+ /**
+ * Original hook name: enable_update_services_configuration
+ */
+ public static final String ENABLE_UPDATE_SERVICES_CONFIGURATION = "enable_update_services_configuration";
+
+ /**
+ * Original hook name: enable_wp_debug_mode_checks
+ */
+ public static final String ENABLE_WP_DEBUG_MODE_CHECKS = "enable_wp_debug_mode_checks";
+
+ /**
+ * Original hook name: enclosure_links
+ */
+ public static final String ENCLOSURE_LINKS = "enclosure_links";
+
+ /**
+ * Original hook name: end_fetch_post_thumbnail_html
+ */
+ public static final String END_FETCH_POST_THUMBNAIL_HTML = "end_fetch_post_thumbnail_html";
+
+ /**
+ * Original hook name: enqueue_block_assets
+ */
+ public static final String ENQUEUE_BLOCK_ASSETS = "enqueue_block_assets";
+
+ /**
+ * Original hook name: enqueue_block_editor_assets
+ */
+ public static final String ENQUEUE_BLOCK_EDITOR_ASSETS = "enqueue_block_editor_assets";
+
+ /**
+ * Original hook name: enqueue_embed_scripts
+ */
+ public static final String ENQUEUE_EMBED_SCRIPTS = "enqueue_embed_scripts";
+
+ /**
+ * Original hook name: enqueue_empty_block_content_assets
+ */
+ public static final String ENQUEUE_EMPTY_BLOCK_CONTENT_ASSETS = "enqueue_empty_block_content_assets";
+
+ /**
+ * Original hook name: enter_title_here
+ */
+ public static final String ENTER_TITLE_HERE = "enter_title_here";
+
+ /**
+ * Original hook name: esc_html
+ */
+ public static final String ESC_HTML = "esc_html";
+
+ /**
+ * Original hook name: esc_textarea
+ */
+ public static final String ESC_TEXTAREA = "esc_textarea";
+
+ /**
+ * Original hook name: esc_xml
+ */
+ public static final String ESC_XML = "esc_xml";
+
+ /**
+ * Original hook name: excerpt_allowed_blocks
+ */
+ public static final String EXCERPT_ALLOWED_BLOCKS = "excerpt_allowed_blocks";
+
+ /**
+ * Original hook name: excerpt_allowed_wrapper_blocks
+ */
+ public static final String EXCERPT_ALLOWED_WRAPPER_BLOCKS = "excerpt_allowed_wrapper_blocks";
+
+ /**
+ * Original hook name: excerpt_edit_pre
+ */
+ public static final String EXCERPT_EDIT_PRE = "excerpt_edit_pre";
+
+ /**
+ * Original hook name: excerpt_length
+ */
+ public static final String EXCERPT_LENGTH = "excerpt_length";
+
+ /**
+ * Original hook name: excerpt_more
+ */
+ public static final String EXCERPT_MORE = "excerpt_more";
+
+ /**
+ * Original hook name: excerpt_save_pre
+ */
+ public static final String EXCERPT_SAVE_PRE = "excerpt_save_pre";
+
+ /**
+ * Original hook name: exit_on_http_head
+ */
+ public static final String EXIT_ON_HTTP_HEAD = "exit_on_http_head";
+
+ /**
+ * Original hook name: expiration_of_site_transient_{$transient}
+ */
+ public static final String EXPIRATION_OF_SITE_TRANSIENT_TRANSIENT = "expiration_of_site_transient_{$transient}";
+
+ /**
+ * Original hook name: expiration_of_transient_{$transient}
+ */
+ public static final String EXPIRATION_OF_TRANSIENT_TRANSIENT = "expiration_of_transient_{$transient}";
+
+ /**
+ * Original hook name: explain_nonce_{$action}
+ */
+ public static final String EXPLAIN_NONCE_ACTION = "explain_nonce_{$action}";
+
+ /**
+ * Original hook name: explain_nonce_{$verb}-{$noun}
+ */
+ public static final String EXPLAIN_NONCE_VERB_NOUN = "explain_nonce_{$verb}-{$noun}";
+
+ /**
+ * Original hook name: export_args
+ */
+ public static final String EXPORT_ARGS = "export_args";
+
+ /**
+ * Original hook name: export_filters
+ */
+ public static final String EXPORT_FILTERS = "export_filters";
+
+ /**
+ * Original hook name: export_wp
+ */
+ public static final String EXPORT_WP = "export_wp";
+
+ /**
+ * Original hook name: export_wp_filename
+ */
+ public static final String EXPORT_WP_FILENAME = "export_wp_filename";
+
+ /**
+ * Original hook name: ext2type
+ */
+ public static final String EXT2TYPE = "ext2type";
+
+ /**
+ * Original hook name: extra_theme_headers
+ */
+ public static final String EXTRA_THEME_HEADERS = "extra_theme_headers";
+
+ /**
+ * Original hook name: extra_{$context}_headers
+ */
+ public static final String EXTRA_CONTEXT_HEADERS = "extra_{$context}_headers";
+
+ /**
+ * Original hook name: fallback_intermediate_image_sizes
+ */
+ public static final String FALLBACK_INTERMEDIATE_IMAGE_SIZES = "fallback_intermediate_image_sizes";
+
+ /**
+ * Original hook name: favorite_actions
+ */
+ public static final String FAVORITE_ACTIONS = "favorite_actions";
+
+ /**
+ * Original hook name: feed_content_type
+ */
+ public static final String FEED_CONTENT_TYPE = "feed_content_type";
+
+ /**
+ * Original hook name: feed_link
+ */
+ public static final String FEED_LINK = "feed_link";
+
+ /**
+ * Original hook name: feed_links_args
+ */
+ public static final String FEED_LINKS_ARGS = "feed_links_args";
+
+ /**
+ * Original hook name: feed_links_extra_args
+ */
+ public static final String FEED_LINKS_EXTRA_ARGS = "feed_links_extra_args";
+
+ /**
+ * Original hook name: feed_links_extra_show_author_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_AUTHOR_FEED = "feed_links_extra_show_author_feed";
+
+ /**
+ * Original hook name: feed_links_extra_show_category_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_CATEGORY_FEED = "feed_links_extra_show_category_feed";
+
+ /**
+ * Original hook name: feed_links_extra_show_post_comments_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_POST_COMMENTS_FEED = "feed_links_extra_show_post_comments_feed";
+
+ /**
+ * Original hook name: feed_links_extra_show_post_type_archive_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_POST_TYPE_ARCHIVE_FEED = "feed_links_extra_show_post_type_archive_feed";
+
+ /**
+ * Original hook name: feed_links_extra_show_search_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_SEARCH_FEED = "feed_links_extra_show_search_feed";
+
+ /**
+ * Original hook name: feed_links_extra_show_tag_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_TAG_FEED = "feed_links_extra_show_tag_feed";
+
+ /**
+ * Original hook name: feed_links_extra_show_tax_feed
+ */
+ public static final String FEED_LINKS_EXTRA_SHOW_TAX_FEED = "feed_links_extra_show_tax_feed";
+
+ /**
+ * Original hook name: feed_links_show_comments_feed
+ */
+ public static final String FEED_LINKS_SHOW_COMMENTS_FEED = "feed_links_show_comments_feed";
+
+ /**
+ * Original hook name: feed_links_show_posts_feed
+ */
+ public static final String FEED_LINKS_SHOW_POSTS_FEED = "feed_links_show_posts_feed";
+
+ /**
+ * Original hook name: file_is_displayable_image
+ */
+ public static final String FILE_IS_DISPLAYABLE_IMAGE = "file_is_displayable_image";
+
+ /**
+ * Original hook name: file_mod_allowed
+ */
+ public static final String FILE_MOD_ALLOWED = "file_mod_allowed";
+
+ /**
+ * Original hook name: file_send_to_editor_url
+ */
+ public static final String FILE_SEND_TO_EDITOR_URL = "file_send_to_editor_url";
+
+ /**
+ * Original hook name: filesystem_method
+ */
+ public static final String FILESYSTEM_METHOD = "filesystem_method";
+
+ /**
+ * Original hook name: filesystem_method_file
+ */
+ public static final String FILESYSTEM_METHOD_FILE = "filesystem_method_file";
+
+ /**
+ * Original hook name: filter_block_editor_meta_boxes
+ */
+ public static final String FILTER_BLOCK_EDITOR_META_BOXES = "filter_block_editor_meta_boxes";
+
+ /**
+ * Original hook name: flash_uploader
+ */
+ public static final String FLASH_UPLOADER = "flash_uploader";
+
+ /**
+ * Original hook name: flush_rewrite_rules_hard
+ */
+ public static final String FLUSH_REWRITE_RULES_HARD = "flush_rewrite_rules_hard";
+
+ /**
+ * Original hook name: font_dir
+ */
+ public static final String FONT_DIR = "font_dir";
+
+ /**
+ * Original hook name: force_filtered_html_on_import
+ */
+ public static final String FORCE_FILTERED_HTML_ON_IMPORT = "force_filtered_html_on_import";
+
+ /**
+ * Original hook name: format_for_editor
+ */
+ public static final String FORMAT_FOR_EDITOR = "format_for_editor";
+
+ /**
+ * Original hook name: format_to_edit
+ */
+ public static final String FORMAT_TO_EDIT = "format_to_edit";
+
+ /**
+ * Original hook name: format_to_post
+ */
+ public static final String FORMAT_TO_POST = "format_to_post";
+
+ /**
+ * Original hook name: found_comments_query
+ */
+ public static final String FOUND_COMMENTS_QUERY = "found_comments_query";
+
+ /**
+ * Original hook name: found_networks_query
+ */
+ public static final String FOUND_NETWORKS_QUERY = "found_networks_query";
+
+ /**
+ * Original hook name: found_posts
+ */
+ public static final String FOUND_POSTS = "found_posts";
+
+ /**
+ * Original hook name: found_posts_query
+ */
+ public static final String FOUND_POSTS_QUERY = "found_posts_query";
+
+ /**
+ * Original hook name: found_sites_query
+ */
+ public static final String FOUND_SITES_QUERY = "found_sites_query";
+
+ /**
+ * Original hook name: found_users_query
+ */
+ public static final String FOUND_USERS_QUERY = "found_users_query";
+
+ /**
+ * Original hook name: front_page_template
+ */
+ public static final String FRONT_PAGE_TEMPLATE = "front_page_template";
+
+ /**
+ * Original hook name: frontpage_template_hierarchy
+ */
+ public static final String FRONTPAGE_TEMPLATE_HIERARCHY = "frontpage_template_hierarchy";
+
+ /**
+ * Original hook name: fs_ftp_connection_types
+ */
+ public static final String FS_FTP_CONNECTION_TYPES = "fs_ftp_connection_types";
+
+ /**
+ * Original hook name: gallery_style
+ */
+ public static final String GALLERY_STYLE = "gallery_style";
+
+ /**
+ * Original hook name: generate_recovery_mode_key
+ */
+ public static final String GENERATE_RECOVERY_MODE_KEY = "generate_recovery_mode_key";
+
+ /**
+ * Original hook name: generate_rewrite_rules
+ */
+ public static final String GENERATE_REWRITE_RULES = "generate_rewrite_rules";
+
+ /**
+ * Original hook name: get_ancestors
+ */
+ public static final String GET_ANCESTORS = "get_ancestors";
+
+ /**
+ * Original hook name: get_archives_link
+ */
+ public static final String GET_ARCHIVES_LINK = "get_archives_link";
+
+ /**
+ * Original hook name: get_attached_file
+ */
+ public static final String GET_ATTACHED_FILE = "get_attached_file";
+
+ /**
+ * Original hook name: get_attached_media
+ */
+ public static final String GET_ATTACHED_MEDIA = "get_attached_media";
+
+ /**
+ * Original hook name: get_attached_media_args
+ */
+ public static final String GET_ATTACHED_MEDIA_ARGS = "get_attached_media_args";
+
+ /**
+ * Original hook name: get_available_languages
+ */
+ public static final String GET_AVAILABLE_LANGUAGES = "get_available_languages";
+
+ /**
+ * Original hook name: get_avatar
+ */
+ public static final String GET_AVATAR = "get_avatar";
+
+ /**
+ * Original hook name: get_avatar_comment_types
+ */
+ public static final String GET_AVATAR_COMMENT_TYPES = "get_avatar_comment_types";
+
+ /**
+ * Original hook name: get_avatar_data
+ */
+ public static final String GET_AVATAR_DATA = "get_avatar_data";
+
+ /**
+ * Original hook name: get_avatar_url
+ */
+ public static final String GET_AVATAR_URL = "get_avatar_url";
+
+ /**
+ * Original hook name: get_block_file_template
+ */
+ public static final String GET_BLOCK_FILE_TEMPLATE = "get_block_file_template";
+
+ /**
+ * Original hook name: get_block_template
+ */
+ public static final String GET_BLOCK_TEMPLATE = "get_block_template";
+
+ /**
+ * Original hook name: get_block_templates
+ */
+ public static final String GET_BLOCK_TEMPLATES = "get_block_templates";
+
+ /**
+ * Original hook name: get_block_type_uses_context
+ */
+ public static final String GET_BLOCK_TYPE_USES_CONTEXT = "get_block_type_uses_context";
+
+ /**
+ * Original hook name: get_block_type_variations
+ */
+ public static final String GET_BLOCK_TYPE_VARIATIONS = "get_block_type_variations";
+
+ /**
+ * Original hook name: get_bloginfo_rss
+ */
+ public static final String GET_BLOGINFO_RSS = "get_bloginfo_rss";
+
+ /**
+ * Original hook name: get_blogs_of_user
+ */
+ public static final String GET_BLOGS_OF_USER = "get_blogs_of_user";
+
+ /**
+ * Original hook name: get_bookmarks
+ */
+ public static final String GET_BOOKMARKS = "get_bookmarks";
+
+ /**
+ * Original hook name: get_calendar
+ */
+ public static final String GET_CALENDAR = "get_calendar";
+
+ /**
+ * Original hook name: get_calendar_args
+ */
+ public static final String GET_CALENDAR_ARGS = "get_calendar_args";
+
+ /**
+ * Original hook name: get_canonical_url
+ */
+ public static final String GET_CANONICAL_URL = "get_canonical_url";
+
+ /**
+ * Original hook name: get_categories
+ */
+ public static final String GET_CATEGORIES = "get_categories";
+
+ /**
+ * Original hook name: get_categories_taxonomy
+ */
+ public static final String GET_CATEGORIES_TAXONOMY = "get_categories_taxonomy";
+
+ /**
+ * Original hook name: get_category
+ */
+ public static final String GET_CATEGORY = "get_category";
+
+ /**
+ * Original hook name: get_comment
+ */
+ public static final String GET_COMMENT = "get_comment";
+
+ /**
+ * Original hook name: get_comment_ID
+ */
+ public static final String GET_COMMENT_ID = "get_comment_ID";
+
+ /**
+ * Original hook name: get_comment_author
+ */
+ public static final String GET_COMMENT_AUTHOR = "get_comment_author";
+
+ /**
+ * Original hook name: get_comment_author_IP
+ */
+ public static final String GET_COMMENT_AUTHOR_IP = "get_comment_author_IP";
+
+ /**
+ * Original hook name: get_comment_author_email
+ */
+ public static final String GET_COMMENT_AUTHOR_EMAIL = "get_comment_author_email";
+
+ /**
+ * Original hook name: get_comment_author_link
+ */
+ public static final String GET_COMMENT_AUTHOR_LINK = "get_comment_author_link";
+
+ /**
+ * Original hook name: get_comment_author_url
+ */
+ public static final String GET_COMMENT_AUTHOR_URL = "get_comment_author_url";
+
+ /**
+ * Original hook name: get_comment_author_url_link
+ */
+ public static final String GET_COMMENT_AUTHOR_URL_LINK = "get_comment_author_url_link";
+
+ /**
+ * Original hook name: get_comment_date
+ */
+ public static final String GET_COMMENT_DATE = "get_comment_date";
+
+ /**
+ * Original hook name: get_comment_excerpt
+ */
+ public static final String GET_COMMENT_EXCERPT = "get_comment_excerpt";
+
+ /**
+ * Original hook name: get_comment_link
+ */
+ public static final String GET_COMMENT_LINK = "get_comment_link";
+
+ /**
+ * Original hook name: get_comment_text
+ */
+ public static final String GET_COMMENT_TEXT = "get_comment_text";
+
+ /**
+ * Original hook name: get_comment_time
+ */
+ public static final String GET_COMMENT_TIME = "get_comment_time";
+
+ /**
+ * Original hook name: get_comment_type
+ */
+ public static final String GET_COMMENT_TYPE = "get_comment_type";
+
+ /**
+ * Original hook name: get_comments_link
+ */
+ public static final String GET_COMMENTS_LINK = "get_comments_link";
+
+ /**
+ * Original hook name: get_comments_number
+ */
+ public static final String GET_COMMENTS_NUMBER = "get_comments_number";
+
+ /**
+ * Original hook name: get_comments_pagenum_link
+ */
+ public static final String GET_COMMENTS_PAGENUM_LINK = "get_comments_pagenum_link";
+
+ /**
+ * Original hook name: get_custom_logo
+ */
+ public static final String GET_CUSTOM_LOGO = "get_custom_logo";
+
+ /**
+ * Original hook name: get_custom_logo_image_attributes
+ */
+ public static final String GET_CUSTOM_LOGO_IMAGE_ATTRIBUTES = "get_custom_logo_image_attributes";
+
+ /**
+ * Original hook name: get_date_sql
+ */
+ public static final String GET_DATE_SQL = "get_date_sql";
+
+ /**
+ * Original hook name: get_default_comment_status
+ */
+ public static final String GET_DEFAULT_COMMENT_STATUS = "get_default_comment_status";
+
+ /**
+ * Original hook name: get_delete_post_link
+ */
+ public static final String GET_DELETE_POST_LINK = "get_delete_post_link";
+
+ /**
+ * Original hook name: get_edit_bookmark_link
+ */
+ public static final String GET_EDIT_BOOKMARK_LINK = "get_edit_bookmark_link";
+
+ /**
+ * Original hook name: get_edit_comment_link
+ */
+ public static final String GET_EDIT_COMMENT_LINK = "get_edit_comment_link";
+
+ /**
+ * Original hook name: get_edit_post_link
+ */
+ public static final String GET_EDIT_POST_LINK = "get_edit_post_link";
+
+ /**
+ * Original hook name: get_edit_tag_link
+ */
+ public static final String GET_EDIT_TAG_LINK = "get_edit_tag_link";
+
+ /**
+ * Original hook name: get_edit_term_link
+ */
+ public static final String GET_EDIT_TERM_LINK = "get_edit_term_link";
+
+ /**
+ * Original hook name: get_edit_user_link
+ */
+ public static final String GET_EDIT_USER_LINK = "get_edit_user_link";
+
+ /**
+ * Original hook name: get_editable_authors
+ */
+ public static final String GET_EDITABLE_AUTHORS = "get_editable_authors";
+
+ /**
+ * Original hook name: get_enclosed
+ */
+ public static final String GET_ENCLOSED = "get_enclosed";
+
+ /**
+ * Original hook name: get_feed_build_date
+ */
+ public static final String GET_FEED_BUILD_DATE = "get_feed_build_date";
+
+ /**
+ * Original hook name: get_footer
+ */
+ public static final String GET_FOOTER = "get_footer";
+
+ /**
+ * Original hook name: get_header
+ */
+ public static final String GET_HEADER = "get_header";
+
+ /**
+ * Original hook name: get_header_image
+ */
+ public static final String GET_HEADER_IMAGE = "get_header_image";
+
+ /**
+ * Original hook name: get_header_image_tag
+ */
+ public static final String GET_HEADER_IMAGE_TAG = "get_header_image_tag";
+
+ /**
+ * Original hook name: get_header_image_tag_attributes
+ */
+ public static final String GET_HEADER_IMAGE_TAG_ATTRIBUTES = "get_header_image_tag_attributes";
+
+ /**
+ * Original hook name: get_header_video_url
+ */
+ public static final String GET_HEADER_VIDEO_URL = "get_header_video_url";
+
+ /**
+ * Original hook name: get_image_tag
+ */
+ public static final String GET_IMAGE_TAG = "get_image_tag";
+
+ /**
+ * Original hook name: get_image_tag_class
+ */
+ public static final String GET_IMAGE_TAG_CLASS = "get_image_tag_class";
+
+ /**
+ * Original hook name: get_lastpostdate
+ */
+ public static final String GET_LASTPOSTDATE = "get_lastpostdate";
+
+ /**
+ * Original hook name: get_lastpostmodified
+ */
+ public static final String GET_LASTPOSTMODIFIED = "get_lastpostmodified";
+
+ /**
+ * Original hook name: get_main_network_id
+ */
+ public static final String GET_MAIN_NETWORK_ID = "get_main_network_id";
+
+ /**
+ * Original hook name: get_media_item_args
+ */
+ public static final String GET_MEDIA_ITEM_ARGS = "get_media_item_args";
+
+ /**
+ * Original hook name: get_meta_sql
+ */
+ public static final String GET_META_SQL = "get_meta_sql";
+
+ /**
+ * Original hook name: get_nested_categories
+ */
+ public static final String GET_NESTED_CATEGORIES = "get_nested_categories";
+
+ /**
+ * Original hook name: get_network
+ */
+ public static final String GET_NETWORK = "get_network";
+
+ /**
+ * Original hook name: get_next_post_join
+ */
+ public static final String GET_NEXT_POST_JOIN = "get_next_post_join";
+
+ /**
+ * Original hook name: get_next_post_sort
+ */
+ public static final String GET_NEXT_POST_SORT = "get_next_post_sort";
+
+ /**
+ * Original hook name: get_next_post_where
+ */
+ public static final String GET_NEXT_POST_WHERE = "get_next_post_where";
+
+ /**
+ * Original hook name: get_object_subtype_{$object_type}
+ */
+ public static final String GET_OBJECT_SUBTYPE_OBJECT_TYPE = "get_object_subtype_{$object_type}";
+
+ /**
+ * Original hook name: get_object_terms
+ */
+ public static final String GET_OBJECT_TERMS = "get_object_terms";
+
+ /**
+ * Original hook name: get_others_drafts
+ */
+ public static final String GET_OTHERS_DRAFTS = "get_others_drafts";
+
+ /**
+ * Original hook name: get_page_of_comment
+ */
+ public static final String GET_PAGE_OF_COMMENT = "get_page_of_comment";
+
+ /**
+ * Original hook name: get_page_of_comment_query_args
+ */
+ public static final String GET_PAGE_OF_COMMENT_QUERY_ARGS = "get_page_of_comment_query_args";
+
+ /**
+ * Original hook name: get_page_uri
+ */
+ public static final String GET_PAGE_URI = "get_page_uri";
+
+ /**
+ * Original hook name: get_pagenum_link
+ */
+ public static final String GET_PAGENUM_LINK = "get_pagenum_link";
+
+ /**
+ * Original hook name: get_pages
+ */
+ public static final String GET_PAGES = "get_pages";
+
+ /**
+ * Original hook name: get_pages_query_args
+ */
+ public static final String GET_PAGES_QUERY_ARGS = "get_pages_query_args";
+
+ /**
+ * Original hook name: get_post_galleries
+ */
+ public static final String GET_POST_GALLERIES = "get_post_galleries";
+
+ /**
+ * Original hook name: get_post_gallery
+ */
+ public static final String GET_POST_GALLERY = "get_post_gallery";
+
+ /**
+ * Original hook name: get_post_modified_time
+ */
+ public static final String GET_POST_MODIFIED_TIME = "get_post_modified_time";
+
+ /**
+ * Original hook name: get_post_status
+ */
+ public static final String GET_POST_STATUS = "get_post_status";
+
+ /**
+ * Original hook name: get_post_time
+ */
+ public static final String GET_POST_TIME = "get_post_time";
+
+ /**
+ * Original hook name: get_previous_post_join
+ */
+ public static final String GET_PREVIOUS_POST_JOIN = "get_previous_post_join";
+
+ /**
+ * Original hook name: get_previous_post_sort
+ */
+ public static final String GET_PREVIOUS_POST_SORT = "get_previous_post_sort";
+
+ /**
+ * Original hook name: get_previous_post_where
+ */
+ public static final String GET_PREVIOUS_POST_WHERE = "get_previous_post_where";
+
+ /**
+ * Original hook name: get_pung
+ */
+ public static final String GET_PUNG = "get_pung";
+
+ /**
+ * Original hook name: get_role_list
+ */
+ public static final String GET_ROLE_LIST = "get_role_list";
+
+ /**
+ * Original hook name: get_sample_permalink
+ */
+ public static final String GET_SAMPLE_PERMALINK = "get_sample_permalink";
+
+ /**
+ * Original hook name: get_sample_permalink_html
+ */
+ public static final String GET_SAMPLE_PERMALINK_HTML = "get_sample_permalink_html";
+
+ /**
+ * Original hook name: get_schedule
+ */
+ public static final String GET_SCHEDULE = "get_schedule";
+
+ /**
+ * Original hook name: get_search_form
+ */
+ public static final String GET_SEARCH_FORM = "get_search_form";
+
+ /**
+ * Original hook name: get_search_query
+ */
+ public static final String GET_SEARCH_QUERY = "get_search_query";
+
+ /**
+ * Original hook name: get_shortlink
+ */
+ public static final String GET_SHORTLINK = "get_shortlink";
+
+ /**
+ * Original hook name: get_sidebar
+ */
+ public static final String GET_SIDEBAR = "get_sidebar";
+
+ /**
+ * Original hook name: get_site
+ */
+ public static final String GET_SITE = "get_site";
+
+ /**
+ * Original hook name: get_site_icon_url
+ */
+ public static final String GET_SITE_ICON_URL = "get_site_icon_url";
+
+ /**
+ * Original hook name: get_space_allowed
+ */
+ public static final String GET_SPACE_ALLOWED = "get_space_allowed";
+
+ /**
+ * Original hook name: get_tags
+ */
+ public static final String GET_TAGS = "get_tags";
+
+ /**
+ * Original hook name: get_template_part
+ */
+ public static final String GET_TEMPLATE_PART = "get_template_part";
+
+ /**
+ * Original hook name: get_template_part_{$slug}
+ */
+ public static final String GET_TEMPLATE_PART_SLUG = "get_template_part_{$slug}";
+
+ /**
+ * Original hook name: get_term
+ */
+ public static final String GET_TERM = "get_term";
+
+ /**
+ * Original hook name: get_terms
+ */
+ public static final String GET_TERMS = "get_terms";
+
+ /**
+ * Original hook name: get_terms_args
+ */
+ public static final String GET_TERMS_ARGS = "get_terms_args";
+
+ /**
+ * Original hook name: get_terms_defaults
+ */
+ public static final String GET_TERMS_DEFAULTS = "get_terms_defaults";
+
+ /**
+ * Original hook name: get_terms_fields
+ */
+ public static final String GET_TERMS_FIELDS = "get_terms_fields";
+
+ /**
+ * Original hook name: get_terms_orderby
+ */
+ public static final String GET_TERMS_ORDERBY = "get_terms_orderby";
+
+ /**
+ * Original hook name: get_the_archive_description
+ */
+ public static final String GET_THE_ARCHIVE_DESCRIPTION = "get_the_archive_description";
+
+ /**
+ * Original hook name: get_the_archive_title
+ */
+ public static final String GET_THE_ARCHIVE_TITLE = "get_the_archive_title";
+
+ /**
+ * Original hook name: get_the_archive_title_prefix
+ */
+ public static final String GET_THE_ARCHIVE_TITLE_PREFIX = "get_the_archive_title_prefix";
+
+ /**
+ * Original hook name: get_the_author_{$field}
+ */
+ public static final String GET_THE_AUTHOR_FIELD = "get_the_author_{$field}";
+
+ /**
+ * Original hook name: get_the_categories
+ */
+ public static final String GET_THE_CATEGORIES = "get_the_categories";
+
+ /**
+ * Original hook name: get_the_date
+ */
+ public static final String GET_THE_DATE = "get_the_date";
+
+ /**
+ * Original hook name: get_the_excerpt
+ */
+ public static final String GET_THE_EXCERPT = "get_the_excerpt";
+
+ /**
+ * Original hook name: get_the_generator_{$type}
+ */
+ public static final String GET_THE_GENERATOR_TYPE = "get_the_generator_{$type}";
+
+ /**
+ * Original hook name: get_the_guid
+ */
+ public static final String GET_THE_GUID = "get_the_guid";
+
+ /**
+ * Original hook name: get_the_modified_date
+ */
+ public static final String GET_THE_MODIFIED_DATE = "get_the_modified_date";
+
+ /**
+ * Original hook name: get_the_modified_time
+ */
+ public static final String GET_THE_MODIFIED_TIME = "get_the_modified_time";
+
+ /**
+ * Original hook name: get_the_post_type_description
+ */
+ public static final String GET_THE_POST_TYPE_DESCRIPTION = "get_the_post_type_description";
+
+ /**
+ * Original hook name: get_the_tags
+ */
+ public static final String GET_THE_TAGS = "get_the_tags";
+
+ /**
+ * Original hook name: get_the_terms
+ */
+ public static final String GET_THE_TERMS = "get_the_terms";
+
+ /**
+ * Original hook name: get_the_time
+ */
+ public static final String GET_THE_TIME = "get_the_time";
+
+ /**
+ * Original hook name: get_theme_starter_content
+ */
+ public static final String GET_THEME_STARTER_CONTENT = "get_theme_starter_content";
+
+ /**
+ * Original hook name: get_to_ping
+ */
+ public static final String GET_TO_PING = "get_to_ping";
+
+ /**
+ * Original hook name: get_user_option_{$option}
+ */
+ public static final String GET_USER_OPTION_OPTION = "get_user_option_{$option}";
+
+ /**
+ * Original hook name: get_usernumposts
+ */
+ public static final String GET_USERNUMPOSTS = "get_usernumposts";
+
+ /**
+ * Original hook name: get_users_drafts
+ */
+ public static final String GET_USERS_DRAFTS = "get_users_drafts";
+
+ /**
+ * Original hook name: get_wp_title_rss
+ */
+ public static final String GET_WP_TITLE_RSS = "get_wp_title_rss";
+
+ /**
+ * Original hook name: get_{$adjacent}_post_excluded_terms
+ */
+ public static final String GET_ADJACENT_POST_EXCLUDED_TERMS = "get_{$adjacent}_post_excluded_terms";
+
+ /**
+ * Original hook name: get_{$adjacent}_post_join
+ */
+ public static final String GET_ADJACENT_POST_JOIN = "get_{$adjacent}_post_join";
+
+ /**
+ * Original hook name: get_{$adjacent}_post_sort
+ */
+ public static final String GET_ADJACENT_POST_SORT = "get_{$adjacent}_post_sort";
+
+ /**
+ * Original hook name: get_{$adjacent}_post_where
+ */
+ public static final String GET_ADJACENT_POST_WHERE = "get_{$adjacent}_post_where";
+
+ /**
+ * Original hook name: get_{$meta_type}_metadata
+ */
+ public static final String GET_META_TYPE_METADATA = "get_{$meta_type}_metadata";
+
+ /**
+ * Original hook name: get_{$meta_type}_metadata_by_mid
+ */
+ public static final String GET_META_TYPE_METADATA_BY_MID = "get_{$meta_type}_metadata_by_mid";
+
+ /**
+ * Original hook name: get_{$taxonomy}
+ */
+ public static final String GET_TAXONOMY = "get_{$taxonomy}";
+
+ /**
+ * Original hook name: getarchives_join
+ */
+ public static final String GETARCHIVES_JOIN = "getarchives_join";
+
+ /**
+ * Original hook name: getarchives_where
+ */
+ public static final String GETARCHIVES_WHERE = "getarchives_where";
+
+ /**
+ * Original hook name: getimagesize_mimes_to_exts
+ */
+ public static final String GETIMAGESIZE_MIMES_TO_EXTS = "getimagesize_mimes_to_exts";
+
+ /**
+ * Original hook name: gettext
+ */
+ public static final String GETTEXT = "gettext";
+
+ /**
+ * Original hook name: gettext_with_context
+ */
+ public static final String GETTEXT_WITH_CONTEXT = "gettext_with_context";
+
+ /**
+ * Original hook name: gettext_with_context_{$domain}
+ */
+ public static final String GETTEXT_WITH_CONTEXT_DOMAIN = "gettext_with_context_{$domain}";
+
+ /**
+ * Original hook name: gettext_{$domain}
+ */
+ public static final String GETTEXT_DOMAIN = "gettext_{$domain}";
+
+ /**
+ * Original hook name: global_terms_enabled
+ */
+ public static final String GLOBAL_TERMS_ENABLED = "global_terms_enabled";
+
+ /**
+ * Original hook name: got_rewrite
+ */
+ public static final String GOT_REWRITE = "got_rewrite";
+
+ /**
+ * Original hook name: got_url_rewrite
+ */
+ public static final String GOT_URL_REWRITE = "got_url_rewrite";
+
+ /**
+ * Original hook name: graceful_fail
+ */
+ public static final String GRACEFUL_FAIL = "graceful_fail";
+
+ /**
+ * Original hook name: graceful_fail_template
+ */
+ public static final String GRACEFUL_FAIL_TEMPLATE = "graceful_fail_template";
+
+ /**
+ * Original hook name: grant_super_admin
+ */
+ public static final String GRANT_SUPER_ADMIN = "grant_super_admin";
+
+ /**
+ * Original hook name: granted_super_admin
+ */
+ public static final String GRANTED_SUPER_ADMIN = "granted_super_admin";
+
+ /**
+ * Original hook name: handle_bulk_actions->id}
+ */
+ public static final String HANDLE_BULK_ACTIONS_ID = "handle_bulk_actions->id}";
+
+ /**
+ * Original hook name: handle_bulk_actions-{$screen}
+ */
+ public static final String HANDLE_BULK_ACTIONS_SCREEN = "handle_bulk_actions-{$screen}";
+
+ /**
+ * Original hook name: handle_network_bulk_actions->id}
+ */
+ public static final String HANDLE_NETWORK_BULK_ACTIONS_ID = "handle_network_bulk_actions->id}";
+
+ /**
+ * Original hook name: handle_network_bulk_actions-{$screen}
+ */
+ public static final String HANDLE_NETWORK_BULK_ACTIONS_SCREEN = "handle_network_bulk_actions-{$screen}";
+
+ /**
+ * Original hook name: has_nav_menu
+ */
+ public static final String HAS_NAV_MENU = "has_nav_menu";
+
+ /**
+ * Original hook name: has_post_thumbnail
+ */
+ public static final String HAS_POST_THUMBNAIL = "has_post_thumbnail";
+
+ /**
+ * Original hook name: header_video_settings
+ */
+ public static final String HEADER_VIDEO_SETTINGS = "header_video_settings";
+
+ /**
+ * Original hook name: heartbeat_nopriv_received
+ */
+ public static final String HEARTBEAT_NOPRIV_RECEIVED = "heartbeat_nopriv_received";
+
+ /**
+ * Original hook name: heartbeat_nopriv_send
+ */
+ public static final String HEARTBEAT_NOPRIV_SEND = "heartbeat_nopriv_send";
+
+ /**
+ * Original hook name: heartbeat_nopriv_tick
+ */
+ public static final String HEARTBEAT_NOPRIV_TICK = "heartbeat_nopriv_tick";
+
+ /**
+ * Original hook name: heartbeat_received
+ */
+ public static final String HEARTBEAT_RECEIVED = "heartbeat_received";
+
+ /**
+ * Original hook name: heartbeat_send
+ */
+ public static final String HEARTBEAT_SEND = "heartbeat_send";
+
+ /**
+ * Original hook name: heartbeat_settings
+ */
+ public static final String HEARTBEAT_SETTINGS = "heartbeat_settings";
+
+ /**
+ * Original hook name: heartbeat_tick
+ */
+ public static final String HEARTBEAT_TICK = "heartbeat_tick";
+
+ /**
+ * Original hook name: hidden_columns
+ */
+ public static final String HIDDEN_COLUMNS = "hidden_columns";
+
+ /**
+ * Original hook name: hidden_meta_boxes
+ */
+ public static final String HIDDEN_META_BOXES = "hidden_meta_boxes";
+
+ /**
+ * Original hook name: hierarchical_post_types
+ */
+ public static final String HIERARCHICAL_POST_TYPES = "hierarchical_post_types";
+
+ /**
+ * Original hook name: home_template
+ */
+ public static final String HOME_TEMPLATE = "home_template";
+
+ /**
+ * Original hook name: home_url
+ */
+ public static final String HOME_URL = "home_url";
+
+ /**
+ * Original hook name: hooked_block
+ */
+ public static final String HOOKED_BLOCK = "hooked_block";
+
+ /**
+ * Original hook name: hooked_block_types
+ */
+ public static final String HOOKED_BLOCK_TYPES = "hooked_block_types";
+
+ /**
+ * Original hook name: hooked_block_{$hooked_block_type}
+ */
+ public static final String HOOKED_BLOCK_HOOKED_BLOCK_TYPE = "hooked_block_{$hooked_block_type}";
+
+ /**
+ * Original hook name: htmledit_pre
+ */
+ public static final String HTMLEDIT_PRE = "htmledit_pre";
+
+ /**
+ * Original hook name: http_allowed_safe_ports
+ */
+ public static final String HTTP_ALLOWED_SAFE_PORTS = "http_allowed_safe_ports";
+
+ /**
+ * Original hook name: http_api_curl
+ */
+ public static final String HTTP_API_CURL = "http_api_curl";
+
+ /**
+ * Original hook name: http_api_debug
+ */
+ public static final String HTTP_API_DEBUG = "http_api_debug";
+
+ /**
+ * Original hook name: http_api_transports
+ */
+ public static final String HTTP_API_TRANSPORTS = "http_api_transports";
+
+ /**
+ * Original hook name: http_headers_useragent
+ */
+ public static final String HTTP_HEADERS_USERAGENT = "http_headers_useragent";
+
+ /**
+ * Original hook name: http_origin
+ */
+ public static final String HTTP_ORIGIN = "http_origin";
+
+ /**
+ * Original hook name: http_request_args
+ */
+ public static final String HTTP_REQUEST_ARGS = "http_request_args";
+
+ /**
+ * Original hook name: http_request_default_port
+ */
+ public static final String HTTP_REQUEST_DEFAULT_PORT = "http_request_default_port";
+
+ /**
+ * Original hook name: http_request_host_is_external
+ */
+ public static final String HTTP_REQUEST_HOST_IS_EXTERNAL = "http_request_host_is_external";
+
+ /**
+ * Original hook name: http_request_port
+ */
+ public static final String HTTP_REQUEST_PORT = "http_request_port";
+
+ /**
+ * Original hook name: http_request_redirection_count
+ */
+ public static final String HTTP_REQUEST_REDIRECTION_COUNT = "http_request_redirection_count";
+
+ /**
+ * Original hook name: http_request_reject_unsafe_urls
+ */
+ public static final String HTTP_REQUEST_REJECT_UNSAFE_URLS = "http_request_reject_unsafe_urls";
+
+ /**
+ * Original hook name: http_request_timeout
+ */
+ public static final String HTTP_REQUEST_TIMEOUT = "http_request_timeout";
+
+ /**
+ * Original hook name: http_request_version
+ */
+ public static final String HTTP_REQUEST_VERSION = "http_request_version";
+
+ /**
+ * Original hook name: http_response
+ */
+ public static final String HTTP_RESPONSE = "http_response";
+
+ /**
+ * Original hook name: http_transport_get_debug
+ */
+ public static final String HTTP_TRANSPORT_GET_DEBUG = "http_transport_get_debug";
+
+ /**
+ * Original hook name: http_transport_post_debug
+ */
+ public static final String HTTP_TRANSPORT_POST_DEBUG = "http_transport_post_debug";
+
+ /**
+ * Original hook name: https_local_ssl_verify
+ */
+ public static final String HTTPS_LOCAL_SSL_VERIFY = "https_local_ssl_verify";
+
+ /**
+ * Original hook name: https_ssl_verify
+ */
+ public static final String HTTPS_SSL_VERIFY = "https_ssl_verify";
+
+ /**
+ * Original hook name: human_time_diff
+ */
+ public static final String HUMAN_TIME_DIFF = "human_time_diff";
+
+ /**
+ * Original hook name: icon_dir
+ */
+ public static final String ICON_DIR = "icon_dir";
+
+ /**
+ * Original hook name: icon_dir_uri
+ */
+ public static final String ICON_DIR_URI = "icon_dir_uri";
+
+ /**
+ * Original hook name: icon_dirs
+ */
+ public static final String ICON_DIRS = "icon_dirs";
+
+ /**
+ * Original hook name: iis7_supports_permalinks
+ */
+ public static final String IIS7_SUPPORTS_PERMALINKS = "iis7_supports_permalinks";
+
+ /**
+ * Original hook name: iis7_url_rewrite_rules
+ */
+ public static final String IIS7_URL_REWRITE_RULES = "iis7_url_rewrite_rules";
+
+ /**
+ * Original hook name: illegal_user_logins
+ */
+ public static final String ILLEGAL_USER_LOGINS = "illegal_user_logins";
+
+ /**
+ * Original hook name: image_add_caption_shortcode
+ */
+ public static final String IMAGE_ADD_CAPTION_SHORTCODE = "image_add_caption_shortcode";
+
+ /**
+ * Original hook name: image_add_caption_text
+ */
+ public static final String IMAGE_ADD_CAPTION_TEXT = "image_add_caption_text";
+
+ /**
+ * Original hook name: image_downsize
+ */
+ public static final String IMAGE_DOWNSIZE = "image_downsize";
+
+ /**
+ * Original hook name: image_edit_before_change
+ */
+ public static final String IMAGE_EDIT_BEFORE_CHANGE = "image_edit_before_change";
+
+ /**
+ * Original hook name: image_edit_thumbnails_separately
+ */
+ public static final String IMAGE_EDIT_THUMBNAILS_SEPARATELY = "image_edit_thumbnails_separately";
+
+ /**
+ * Original hook name: image_editor_default_mime_type
+ */
+ public static final String IMAGE_EDITOR_DEFAULT_MIME_TYPE = "image_editor_default_mime_type";
+
+ /**
+ * Original hook name: image_editor_output_format
+ */
+ public static final String IMAGE_EDITOR_OUTPUT_FORMAT = "image_editor_output_format";
+
+ /**
+ * Original hook name: image_editor_save_pre
+ */
+ public static final String IMAGE_EDITOR_SAVE_PRE = "image_editor_save_pre";
+
+ /**
+ * Original hook name: image_get_intermediate_size
+ */
+ public static final String IMAGE_GET_INTERMEDIATE_SIZE = "image_get_intermediate_size";
+
+ /**
+ * Original hook name: image_make_intermediate_size
+ */
+ public static final String IMAGE_MAKE_INTERMEDIATE_SIZE = "image_make_intermediate_size";
+
+ /**
+ * Original hook name: image_max_bit_depth
+ */
+ public static final String IMAGE_MAX_BIT_DEPTH = "image_max_bit_depth";
+
+ /**
+ * Original hook name: image_memory_limit
+ */
+ public static final String IMAGE_MEMORY_LIMIT = "image_memory_limit";
+
+ /**
+ * Original hook name: image_resize_dimensions
+ */
+ public static final String IMAGE_RESIZE_DIMENSIONS = "image_resize_dimensions";
+
+ /**
+ * Original hook name: image_save_pre
+ */
+ public static final String IMAGE_SAVE_PRE = "image_save_pre";
+
+ /**
+ * Original hook name: image_save_progressive
+ */
+ public static final String IMAGE_SAVE_PROGRESSIVE = "image_save_progressive";
+
+ /**
+ * Original hook name: image_send_to_editor
+ */
+ public static final String IMAGE_SEND_TO_EDITOR = "image_send_to_editor";
+
+ /**
+ * Original hook name: image_send_to_editor_url
+ */
+ public static final String IMAGE_SEND_TO_EDITOR_URL = "image_send_to_editor_url";
+
+ /**
+ * Original hook name: image_sideload_extensions
+ */
+ public static final String IMAGE_SIDELOAD_EXTENSIONS = "image_sideload_extensions";
+
+ /**
+ * Original hook name: image_size_names_choose
+ */
+ public static final String IMAGE_SIZE_NAMES_CHOOSE = "image_size_names_choose";
+
+ /**
+ * Original hook name: image_strip_meta
+ */
+ public static final String IMAGE_STRIP_META = "image_strip_meta";
+
+ /**
+ * Original hook name: image_upload_iframe_src
+ */
+ public static final String IMAGE_UPLOAD_IFRAME_SRC = "image_upload_iframe_src";
+
+ /**
+ * Original hook name: img_caption_shortcode
+ */
+ public static final String IMG_CAPTION_SHORTCODE = "img_caption_shortcode";
+
+ /**
+ * Original hook name: img_caption_shortcode_width
+ */
+ public static final String IMG_CAPTION_SHORTCODE_WIDTH = "img_caption_shortcode_width";
+
+ /**
+ * Original hook name: import_allow_create_users
+ */
+ public static final String IMPORT_ALLOW_CREATE_USERS = "import_allow_create_users";
+
+ /**
+ * Original hook name: import_allow_fetch_attachments
+ */
+ public static final String IMPORT_ALLOW_FETCH_ATTACHMENTS = "import_allow_fetch_attachments";
+
+ /**
+ * Original hook name: import_attachment_size_limit
+ */
+ public static final String IMPORT_ATTACHMENT_SIZE_LIMIT = "import_attachment_size_limit";
+
+ /**
+ * Original hook name: import_done
+ */
+ public static final String IMPORT_DONE = "import_done";
+
+ /**
+ * Original hook name: import_end
+ */
+ public static final String IMPORT_END = "import_end";
+
+ /**
+ * Original hook name: import_filters
+ */
+ public static final String IMPORT_FILTERS = "import_filters";
+
+ /**
+ * Original hook name: import_post_added
+ */
+ public static final String IMPORT_POST_ADDED = "import_post_added";
+
+ /**
+ * Original hook name: import_post_meta
+ */
+ public static final String IMPORT_POST_META = "import_post_meta";
+
+ /**
+ * Original hook name: import_post_meta_key
+ */
+ public static final String IMPORT_POST_META_KEY = "import_post_meta_key";
+
+ /**
+ * Original hook name: import_start
+ */
+ public static final String IMPORT_START = "import_start";
+
+ /**
+ * Original hook name: import_upload_size_limit
+ */
+ public static final String IMPORT_UPLOAD_SIZE_LIMIT = "import_upload_size_limit";
+
+ /**
+ * Original hook name: in_admin_footer
+ */
+ public static final String IN_ADMIN_FOOTER = "in_admin_footer";
+
+ /**
+ * Original hook name: in_admin_header
+ */
+ public static final String IN_ADMIN_HEADER = "in_admin_header";
+
+ /**
+ * Original hook name: in_plugin_update_message-{$file}
+ */
+ public static final String IN_PLUGIN_UPDATE_MESSAGE_FILE = "in_plugin_update_message-{$file}";
+
+ /**
+ * Original hook name: in_theme_update_message-{$theme_key}
+ */
+ public static final String IN_THEME_UPDATE_MESSAGE_THEME_KEY = "in_theme_update_message-{$theme_key}";
+
+ /**
+ * Original hook name: in_widget_form
+ */
+ public static final String IN_WIDGET_FORM = "in_widget_form";
+
+ /**
+ * Original hook name: includes_url
+ */
+ public static final String INCLUDES_URL = "includes_url";
+
+ /**
+ * Original hook name: incompatible_sql_modes
+ */
+ public static final String INCOMPATIBLE_SQL_MODES = "incompatible_sql_modes";
+
+ /**
+ * Original hook name: index_rel_link
+ */
+ public static final String INDEX_REL_LINK = "index_rel_link";
+
+ /**
+ * Original hook name: index_template_hierarchy
+ */
+ public static final String INDEX_TEMPLATE_HIERARCHY = "index_template_hierarchy";
+
+ /**
+ * Original hook name: init
+ */
+ public static final String INIT = "init";
+
+ /**
+ * Original hook name: insert_custom_user_meta
+ */
+ public static final String INSERT_CUSTOM_USER_META = "insert_custom_user_meta";
+
+ /**
+ * Original hook name: insert_user_meta
+ */
+ public static final String INSERT_USER_META = "insert_user_meta";
+
+ /**
+ * Original hook name: insert_with_markers_inline_instructions
+ */
+ public static final String INSERT_WITH_MARKERS_INLINE_INSTRUCTIONS = "insert_with_markers_inline_instructions";
+
+ /**
+ * Original hook name: install_feedback
+ */
+ public static final String INSTALL_FEEDBACK = "install_feedback";
+
+ /**
+ * Original hook name: install_plugin_complete_actions
+ */
+ public static final String INSTALL_PLUGIN_COMPLETE_ACTIONS = "install_plugin_complete_actions";
+
+ /**
+ * Original hook name: install_plugin_overwrite_actions
+ */
+ public static final String INSTALL_PLUGIN_OVERWRITE_ACTIONS = "install_plugin_overwrite_actions";
+
+ /**
+ * Original hook name: install_plugin_overwrite_comparison
+ */
+ public static final String INSTALL_PLUGIN_OVERWRITE_COMPARISON = "install_plugin_overwrite_comparison";
+
+ /**
+ * Original hook name: install_plugins_nonmenu_tabs
+ */
+ public static final String INSTALL_PLUGINS_NONMENU_TABS = "install_plugins_nonmenu_tabs";
+
+ /**
+ * Original hook name: install_plugins_pre_upload
+ */
+ public static final String INSTALL_PLUGINS_PRE_UPLOAD = "install_plugins_pre_upload";
+
+ /**
+ * Original hook name: install_plugins_pre_{$tab}
+ */
+ public static final String INSTALL_PLUGINS_PRE_TAB = "install_plugins_pre_{$tab}";
+
+ /**
+ * Original hook name: install_plugins_table_api_args_{$tab}
+ */
+ public static final String INSTALL_PLUGINS_TABLE_API_ARGS_TAB = "install_plugins_table_api_args_{$tab}";
+
+ /**
+ * Original hook name: install_plugins_table_header
+ */
+ public static final String INSTALL_PLUGINS_TABLE_HEADER = "install_plugins_table_header";
+
+ /**
+ * Original hook name: install_plugins_tabs
+ */
+ public static final String INSTALL_PLUGINS_TABS = "install_plugins_tabs";
+
+ /**
+ * Original hook name: install_plugins_upload
+ */
+ public static final String INSTALL_PLUGINS_UPLOAD = "install_plugins_upload";
+
+ /**
+ * Original hook name: install_plugins_{$tab}
+ */
+ public static final String INSTALL_PLUGINS_TAB = "install_plugins_{$tab}";
+
+ /**
+ * Original hook name: install_theme_complete_actions
+ */
+ public static final String INSTALL_THEME_COMPLETE_ACTIONS = "install_theme_complete_actions";
+
+ /**
+ * Original hook name: install_theme_overwrite_actions
+ */
+ public static final String INSTALL_THEME_OVERWRITE_ACTIONS = "install_theme_overwrite_actions";
+
+ /**
+ * Original hook name: install_theme_overwrite_comparison
+ */
+ public static final String INSTALL_THEME_OVERWRITE_COMPARISON = "install_theme_overwrite_comparison";
+
+ /**
+ * Original hook name: install_themes_nonmenu_tabs
+ */
+ public static final String INSTALL_THEMES_NONMENU_TABS = "install_themes_nonmenu_tabs";
+
+ /**
+ * Original hook name: install_themes_pre_{$tab}
+ */
+ public static final String INSTALL_THEMES_PRE_TAB = "install_themes_pre_{$tab}";
+
+ /**
+ * Original hook name: install_themes_table_api_args_{$old_filter}
+ */
+ public static final String INSTALL_THEMES_TABLE_API_ARGS_OLD_FILTER = "install_themes_table_api_args_{$old_filter}";
+
+ /**
+ * Original hook name: install_themes_table_api_args_{$tab}
+ */
+ public static final String INSTALL_THEMES_TABLE_API_ARGS_TAB = "install_themes_table_api_args_{$tab}";
+
+ /**
+ * Original hook name: install_themes_table_header
+ */
+ public static final String INSTALL_THEMES_TABLE_HEADER = "install_themes_table_header";
+
+ /**
+ * Original hook name: install_themes_tabs
+ */
+ public static final String INSTALL_THEMES_TABS = "install_themes_tabs";
+
+ /**
+ * Original hook name: install_themes_{$tab}
+ */
+ public static final String INSTALL_THEMES_TAB = "install_themes_{$tab}";
+
+ /**
+ * Original hook name: interactivity_process_directives
+ */
+ public static final String INTERACTIVITY_PROCESS_DIRECTIVES = "interactivity_process_directives";
+
+ /**
+ * Original hook name: intermediate_image_sizes
+ */
+ public static final String INTERMEDIATE_IMAGE_SIZES = "intermediate_image_sizes";
+
+ /**
+ * Original hook name: intermediate_image_sizes_advanced
+ */
+ public static final String INTERMEDIATE_IMAGE_SIZES_ADVANCED = "intermediate_image_sizes_advanced";
+
+ /**
+ * Original hook name: invite_user
+ */
+ public static final String INVITE_USER = "invite_user";
+
+ /**
+ * Original hook name: invited_user_email
+ */
+ public static final String INVITED_USER_EMAIL = "invited_user_email";
+
+ /**
+ * Original hook name: is_active_sidebar
+ */
+ public static final String IS_ACTIVE_SIDEBAR = "is_active_sidebar";
+
+ /**
+ * Original hook name: is_email
+ */
+ public static final String IS_EMAIL = "is_email";
+
+ /**
+ * Original hook name: is_email_address_unsafe
+ */
+ public static final String IS_EMAIL_ADDRESS_UNSAFE = "is_email_address_unsafe";
+
+ /**
+ * Original hook name: is_header_video_active
+ */
+ public static final String IS_HEADER_VIDEO_ACTIVE = "is_header_video_active";
+
+ /**
+ * Original hook name: is_multi_author
+ */
+ public static final String IS_MULTI_AUTHOR = "is_multi_author";
+
+ /**
+ * Original hook name: is_post_embeddable
+ */
+ public static final String IS_POST_EMBEDDABLE = "is_post_embeddable";
+
+ /**
+ * Original hook name: is_post_status_viewable
+ */
+ public static final String IS_POST_STATUS_VIEWABLE = "is_post_status_viewable";
+
+ /**
+ * Original hook name: is_post_type_viewable
+ */
+ public static final String IS_POST_TYPE_VIEWABLE = "is_post_type_viewable";
+
+ /**
+ * Original hook name: is_protected_endpoint
+ */
+ public static final String IS_PROTECTED_ENDPOINT = "is_protected_endpoint";
+
+ /**
+ * Original hook name: is_protected_meta
+ */
+ public static final String IS_PROTECTED_META = "is_protected_meta";
+
+ /**
+ * Original hook name: is_sticky
+ */
+ public static final String IS_STICKY = "is_sticky";
+
+ /**
+ * Original hook name: is_wide_widget_in_customizer
+ */
+ public static final String IS_WIDE_WIDGET_IN_CUSTOMIZER = "is_wide_widget_in_customizer";
+
+ /**
+ * Original hook name: is_wp_error_instance
+ */
+ public static final String IS_WP_ERROR_INSTANCE = "is_wp_error_instance";
+
+ /**
+ * Original hook name: jpeg_quality
+ */
+ public static final String JPEG_QUALITY = "jpeg_quality";
+
+ /**
+ * Original hook name: js_escape
+ */
+ public static final String JS_ESCAPE = "js_escape";
+
+ /**
+ * Original hook name: kses_allowed_protocols
+ */
+ public static final String KSES_ALLOWED_PROTOCOLS = "kses_allowed_protocols";
+
+ /**
+ * Original hook name: kubrick_header_color
+ */
+ public static final String KUBRICK_HEADER_COLOR = "kubrick_header_color";
+
+ /**
+ * Original hook name: kubrick_header_display
+ */
+ public static final String KUBRICK_HEADER_DISPLAY = "kubrick_header_display";
+
+ /**
+ * Original hook name: kubrick_header_image
+ */
+ public static final String KUBRICK_HEADER_IMAGE = "kubrick_header_image";
+
+ /**
+ * Original hook name: lang_codes
+ */
+ public static final String LANG_CODES = "lang_codes";
+
+ /**
+ * Original hook name: lang_dir_for_domain
+ */
+ public static final String LANG_DIR_FOR_DOMAIN = "lang_dir_for_domain";
+
+ /**
+ * Original hook name: language_attributes
+ */
+ public static final String LANGUAGE_ATTRIBUTES = "language_attributes";
+
+ /**
+ * Original hook name: link_cat_row
+ */
+ public static final String LINK_CAT_ROW = "link_cat_row";
+
+ /**
+ * Original hook name: link_cat_row_actions
+ */
+ public static final String LINK_CAT_ROW_ACTIONS = "link_cat_row_actions";
+
+ /**
+ * Original hook name: link_category
+ */
+ public static final String LINK_CATEGORY = "link_category";
+
+ /**
+ * Original hook name: link_description
+ */
+ public static final String LINK_DESCRIPTION = "link_description";
+
+ /**
+ * Original hook name: link_rating
+ */
+ public static final String LINK_RATING = "link_rating";
+
+ /**
+ * Original hook name: link_relatedlinks_list
+ */
+ public static final String LINK_RELATEDLINKS_LIST = "link_relatedlinks_list";
+
+ /**
+ * Original hook name: link_title
+ */
+ public static final String LINK_TITLE = "link_title";
+
+ /**
+ * Original hook name: list_cats
+ */
+ public static final String LIST_CATS = "list_cats";
+
+ /**
+ * Original hook name: list_cats_exclusions
+ */
+ public static final String LIST_CATS_EXCLUSIONS = "list_cats_exclusions";
+
+ /**
+ * Original hook name: list_pages
+ */
+ public static final String LIST_PAGES = "list_pages";
+
+ /**
+ * Original hook name: list_table_primary_column
+ */
+ public static final String LIST_TABLE_PRIMARY_COLUMN = "list_table_primary_column";
+
+ /**
+ * Original hook name: list_terms_exclusions
+ */
+ public static final String LIST_TERMS_EXCLUSIONS = "list_terms_exclusions";
+
+ /**
+ * Original hook name: load-categories-php
+ */
+ public static final String LOAD_CATEGORIES_PHP = "load-categories-php";
+
+ /**
+ * Original hook name: load-edit-link-categories-php
+ */
+ public static final String LOAD_EDIT_LINK_CATEGORIES_PHP = "load-edit-link-categories-php";
+
+ /**
+ * Original hook name: load-edit-tags-php
+ */
+ public static final String LOAD_EDIT_TAGS_PHP = "load-edit-tags-php";
+
+ /**
+ * Original hook name: load-importer-{$importer}
+ */
+ public static final String LOAD_IMPORTER_IMPORTER = "load-importer-{$importer}";
+
+ /**
+ * Original hook name: load-page-new-php
+ */
+ public static final String LOAD_PAGE_NEW_PHP = "load-page-new-php";
+
+ /**
+ * Original hook name: load-page-php
+ */
+ public static final String LOAD_PAGE_PHP = "load-page-php";
+
+ /**
+ * Original hook name: load-widgets-php
+ */
+ public static final String LOAD_WIDGETS_PHP = "load-widgets-php";
+
+ /**
+ * Original hook name: load-{$page_hook}
+ */
+ public static final String LOAD_PAGE_HOOK = "load-{$page_hook}";
+
+ /**
+ * Original hook name: load-{$pagenow}
+ */
+ public static final String LOAD_PAGENOW = "load-{$pagenow}";
+
+ /**
+ * Original hook name: load-{$plugin_page}
+ */
+ public static final String LOAD_PLUGIN_PAGE = "load-{$plugin_page}";
+
+ /**
+ * Original hook name: load_default_embeds
+ */
+ public static final String LOAD_DEFAULT_EMBEDS = "load_default_embeds";
+
+ /**
+ * Original hook name: load_default_widgets
+ */
+ public static final String LOAD_DEFAULT_WIDGETS = "load_default_widgets";
+
+ /**
+ * Original hook name: load_feed_engine
+ */
+ public static final String LOAD_FEED_ENGINE = "load_feed_engine";
+
+ /**
+ * Original hook name: load_image_to_edit
+ */
+ public static final String LOAD_IMAGE_TO_EDIT = "load_image_to_edit";
+
+ /**
+ * Original hook name: load_image_to_edit_attachmenturl
+ */
+ public static final String LOAD_IMAGE_TO_EDIT_ATTACHMENTURL = "load_image_to_edit_attachmenturl";
+
+ /**
+ * Original hook name: load_image_to_edit_filesystempath
+ */
+ public static final String LOAD_IMAGE_TO_EDIT_FILESYSTEMPATH = "load_image_to_edit_filesystempath";
+
+ /**
+ * Original hook name: load_image_to_edit_path
+ */
+ public static final String LOAD_IMAGE_TO_EDIT_PATH = "load_image_to_edit_path";
+
+ /**
+ * Original hook name: load_script_textdomain_relative_path
+ */
+ public static final String LOAD_SCRIPT_TEXTDOMAIN_RELATIVE_PATH = "load_script_textdomain_relative_path";
+
+ /**
+ * Original hook name: load_script_translation_file
+ */
+ public static final String LOAD_SCRIPT_TRANSLATION_FILE = "load_script_translation_file";
+
+ /**
+ * Original hook name: load_script_translations
+ */
+ public static final String LOAD_SCRIPT_TRANSLATIONS = "load_script_translations";
+
+ /**
+ * Original hook name: load_textdomain
+ */
+ public static final String LOAD_TEXTDOMAIN = "load_textdomain";
+
+ /**
+ * Original hook name: load_textdomain_mofile
+ */
+ public static final String LOAD_TEXTDOMAIN_MOFILE = "load_textdomain_mofile";
+
+ /**
+ * Original hook name: load_translation_file
+ */
+ public static final String LOAD_TRANSLATION_FILE = "load_translation_file";
+
+ /**
+ * Original hook name: locale
+ */
+ public static final String LOCALE = "locale";
+
+ /**
+ * Original hook name: locale_stylesheet_uri
+ */
+ public static final String LOCALE_STYLESHEET_URI = "locale_stylesheet_uri";
+
+ /**
+ * Original hook name: log_query_custom_data
+ */
+ public static final String LOG_QUERY_CUSTOM_DATA = "log_query_custom_data";
+
+ /**
+ * Original hook name: login_body_class
+ */
+ public static final String LOGIN_BODY_CLASS = "login_body_class";
+
+ /**
+ * Original hook name: login_display_language_dropdown
+ */
+ public static final String LOGIN_DISPLAY_LANGUAGE_DROPDOWN = "login_display_language_dropdown";
+
+ /**
+ * Original hook name: login_enqueue_scripts
+ */
+ public static final String LOGIN_ENQUEUE_SCRIPTS = "login_enqueue_scripts";
+
+ /**
+ * Original hook name: login_errors
+ */
+ public static final String LOGIN_ERRORS = "login_errors";
+
+ /**
+ * Original hook name: login_footer
+ */
+ public static final String LOGIN_FOOTER = "login_footer";
+
+ /**
+ * Original hook name: login_form
+ */
+ public static final String LOGIN_FORM = "login_form";
+
+ /**
+ * Original hook name: login_form_bottom
+ */
+ public static final String LOGIN_FORM_BOTTOM = "login_form_bottom";
+
+ /**
+ * Original hook name: login_form_defaults
+ */
+ public static final String LOGIN_FORM_DEFAULTS = "login_form_defaults";
+
+ /**
+ * Original hook name: login_form_middle
+ */
+ public static final String LOGIN_FORM_MIDDLE = "login_form_middle";
+
+ /**
+ * Original hook name: login_form_top
+ */
+ public static final String LOGIN_FORM_TOP = "login_form_top";
+
+ /**
+ * Original hook name: login_form_{$action}
+ */
+ public static final String LOGIN_FORM_ACTION = "login_form_{$action}";
+
+ /**
+ * Original hook name: login_head
+ */
+ public static final String LOGIN_HEAD = "login_head";
+
+ /**
+ * Original hook name: login_header
+ */
+ public static final String LOGIN_HEADER = "login_header";
+
+ /**
+ * Original hook name: login_headertext
+ */
+ public static final String LOGIN_HEADERTEXT = "login_headertext";
+
+ /**
+ * Original hook name: login_headertitle
+ */
+ public static final String LOGIN_HEADERTITLE = "login_headertitle";
+
+ /**
+ * Original hook name: login_headerurl
+ */
+ public static final String LOGIN_HEADERURL = "login_headerurl";
+
+ /**
+ * Original hook name: login_init
+ */
+ public static final String LOGIN_INIT = "login_init";
+
+ /**
+ * Original hook name: login_language_dropdown_args
+ */
+ public static final String LOGIN_LANGUAGE_DROPDOWN_ARGS = "login_language_dropdown_args";
+
+ /**
+ * Original hook name: login_link_separator
+ */
+ public static final String LOGIN_LINK_SEPARATOR = "login_link_separator";
+
+ /**
+ * Original hook name: login_message
+ */
+ public static final String LOGIN_MESSAGE = "login_message";
+
+ /**
+ * Original hook name: login_messages
+ */
+ public static final String LOGIN_MESSAGES = "login_messages";
+
+ /**
+ * Original hook name: login_redirect
+ */
+ public static final String LOGIN_REDIRECT = "login_redirect";
+
+ /**
+ * Original hook name: login_site_html_link
+ */
+ public static final String LOGIN_SITE_HTML_LINK = "login_site_html_link";
+
+ /**
+ * Original hook name: login_title
+ */
+ public static final String LOGIN_TITLE = "login_title";
+
+ /**
+ * Original hook name: login_url
+ */
+ public static final String LOGIN_URL = "login_url";
+
+ /**
+ * Original hook name: loginout
+ */
+ public static final String LOGINOUT = "loginout";
+
+ /**
+ * Original hook name: logout_redirect
+ */
+ public static final String LOGOUT_REDIRECT = "logout_redirect";
+
+ /**
+ * Original hook name: logout_url
+ */
+ public static final String LOGOUT_URL = "logout_url";
+
+ /**
+ * Original hook name: loop_end
+ */
+ public static final String LOOP_END = "loop_end";
+
+ /**
+ * Original hook name: loop_no_results
+ */
+ public static final String LOOP_NO_RESULTS = "loop_no_results";
+
+ /**
+ * Original hook name: loop_start
+ */
+ public static final String LOOP_START = "loop_start";
+
+ /**
+ * Original hook name: lost_password
+ */
+ public static final String LOST_PASSWORD = "lost_password";
+
+ /**
+ * Original hook name: lost_password_html_link
+ */
+ public static final String LOST_PASSWORD_HTML_LINK = "lost_password_html_link";
+
+ /**
+ * Original hook name: lostpassword_errors
+ */
+ public static final String LOSTPASSWORD_ERRORS = "lostpassword_errors";
+
+ /**
+ * Original hook name: lostpassword_form
+ */
+ public static final String LOSTPASSWORD_FORM = "lostpassword_form";
+
+ /**
+ * Original hook name: lostpassword_post
+ */
+ public static final String LOSTPASSWORD_POST = "lostpassword_post";
+
+ /**
+ * Original hook name: lostpassword_redirect
+ */
+ public static final String LOSTPASSWORD_REDIRECT = "lostpassword_redirect";
+
+ /**
+ * Original hook name: lostpassword_url
+ */
+ public static final String LOSTPASSWORD_URL = "lostpassword_url";
+
+ /**
+ * Original hook name: lostpassword_user_data
+ */
+ public static final String LOSTPASSWORD_USER_DATA = "lostpassword_user_data";
+
+ /**
+ * Original hook name: make_clickable_rel
+ */
+ public static final String MAKE_CLICKABLE_REL = "make_clickable_rel";
+
+ /**
+ * Original hook name: make_delete_blog
+ */
+ public static final String MAKE_DELETE_BLOG = "make_delete_blog";
+
+ /**
+ * Original hook name: make_ham_blog
+ */
+ public static final String MAKE_HAM_BLOG = "make_ham_blog";
+
+ /**
+ * Original hook name: make_ham_user
+ */
+ public static final String MAKE_HAM_USER = "make_ham_user";
+
+ /**
+ * Original hook name: make_spam_blog
+ */
+ public static final String MAKE_SPAM_BLOG = "make_spam_blog";
+
+ /**
+ * Original hook name: make_spam_user
+ */
+ public static final String MAKE_SPAM_USER = "make_spam_user";
+
+ /**
+ * Original hook name: make_undelete_blog
+ */
+ public static final String MAKE_UNDELETE_BLOG = "make_undelete_blog";
+
+ /**
+ * Original hook name: manage_blogs_custom_column
+ */
+ public static final String MANAGE_BLOGS_CUSTOM_COLUMN = "manage_blogs_custom_column";
+
+ /**
+ * Original hook name: manage_categories_custom_column
+ */
+ public static final String MANAGE_CATEGORIES_CUSTOM_COLUMN = "manage_categories_custom_column";
+
+ /**
+ * Original hook name: manage_comments_custom_column
+ */
+ public static final String MANAGE_COMMENTS_CUSTOM_COLUMN = "manage_comments_custom_column";
+
+ /**
+ * Original hook name: manage_comments_nav
+ */
+ public static final String MANAGE_COMMENTS_NAV = "manage_comments_nav";
+
+ /**
+ * Original hook name: manage_link_categories_custom_column
+ */
+ public static final String MANAGE_LINK_CATEGORIES_CUSTOM_COLUMN = "manage_link_categories_custom_column";
+
+ /**
+ * Original hook name: manage_link_columns
+ */
+ public static final String MANAGE_LINK_COLUMNS = "manage_link_columns";
+
+ /**
+ * Original hook name: manage_link_custom_column
+ */
+ public static final String MANAGE_LINK_CUSTOM_COLUMN = "manage_link_custom_column";
+
+ /**
+ * Original hook name: manage_media_columns
+ */
+ public static final String MANAGE_MEDIA_COLUMNS = "manage_media_columns";
+
+ /**
+ * Original hook name: manage_media_custom_column
+ */
+ public static final String MANAGE_MEDIA_CUSTOM_COLUMN = "manage_media_custom_column";
+
+ /**
+ * Original hook name: manage_media_media_column
+ */
+ public static final String MANAGE_MEDIA_MEDIA_COLUMN = "manage_media_media_column";
+
+ /**
+ * Original hook name: manage_pages_columns
+ */
+ public static final String MANAGE_PAGES_COLUMNS = "manage_pages_columns";
+
+ /**
+ * Original hook name: manage_pages_custom_column
+ */
+ public static final String MANAGE_PAGES_CUSTOM_COLUMN = "manage_pages_custom_column";
+
+ /**
+ * Original hook name: manage_pages_query
+ */
+ public static final String MANAGE_PAGES_QUERY = "manage_pages_query";
+
+ /**
+ * Original hook name: manage_plugins_custom_column
+ */
+ public static final String MANAGE_PLUGINS_CUSTOM_COLUMN = "manage_plugins_custom_column";
+
+ /**
+ * Original hook name: manage_posts_columns
+ */
+ public static final String MANAGE_POSTS_COLUMNS = "manage_posts_columns";
+
+ /**
+ * Original hook name: manage_posts_custom_column
+ */
+ public static final String MANAGE_POSTS_CUSTOM_COLUMN = "manage_posts_custom_column";
+
+ /**
+ * Original hook name: manage_posts_extra_tablenav
+ */
+ public static final String MANAGE_POSTS_EXTRA_TABLENAV = "manage_posts_extra_tablenav";
+
+ /**
+ * Original hook name: manage_sites_action_links
+ */
+ public static final String MANAGE_SITES_ACTION_LINKS = "manage_sites_action_links";
+
+ /**
+ * Original hook name: manage_sites_custom_column
+ */
+ public static final String MANAGE_SITES_CUSTOM_COLUMN = "manage_sites_custom_column";
+
+ /**
+ * Original hook name: manage_sites_extra_tablenav
+ */
+ public static final String MANAGE_SITES_EXTRA_TABLENAV = "manage_sites_extra_tablenav";
+
+ /**
+ * Original hook name: manage_taxonomies_for_attachment_columns
+ */
+ public static final String MANAGE_TAXONOMIES_FOR_ATTACHMENT_COLUMNS = "manage_taxonomies_for_attachment_columns";
+
+ /**
+ * Original hook name: manage_taxonomies_for_{$post_type}_columns
+ */
+ public static final String MANAGE_TAXONOMIES_FOR_POST_TYPE_COLUMNS = "manage_taxonomies_for_{$post_type}_columns";
+
+ /**
+ * Original hook name: manage_themes_custom_column
+ */
+ public static final String MANAGE_THEMES_CUSTOM_COLUMN = "manage_themes_custom_column";
+
+ /**
+ * Original hook name: manage_users-network_custom_column
+ */
+ public static final String MANAGE_USERS_NETWORK_CUSTOM_COLUMN = "manage_users-network_custom_column";
+
+ /**
+ * Original hook name: manage_users_custom_column
+ */
+ public static final String MANAGE_USERS_CUSTOM_COLUMN = "manage_users_custom_column";
+
+ /**
+ * Original hook name: manage_users_extra_tablenav
+ */
+ public static final String MANAGE_USERS_EXTRA_TABLENAV = "manage_users_extra_tablenav";
+
+ /**
+ * Original hook name: manage_{$page}_columns
+ */
+ public static final String MANAGE_PAGE_COLUMNS = "manage_{$page}_columns";
+
+ /**
+ * Original hook name: manage_{$post->post_type}_posts_custom_column
+ */
+ public static final String MANAGE_POST_POST_TYPE_POSTS_CUSTOM_COLUMN = "manage_{$post->post_type}_posts_custom_column";
+
+ /**
+ * Original hook name: manage_{$post_type}_posts_columns
+ */
+ public static final String MANAGE_POST_TYPE_POSTS_COLUMNS = "manage_{$post_type}_posts_columns";
+
+ /**
+ * Original hook name: manage_{$screen->id}_columns
+ */
+ public static final String MANAGE_SCREEN_ID_COLUMNS = "manage_{$screen->id}_columns";
+
+ /**
+ * Original hook name: manage_{$screen->id}_sortable_columns
+ */
+ public static final String MANAGE_SCREEN_ID_SORTABLE_COLUMNS = "manage_{$screen->id}_sortable_columns";
+
+ /**
+ * Original hook name: manage_{$screen->taxonomy}_custom_column
+ */
+ public static final String MANAGE_SCREEN_TAXONOMY_CUSTOM_COLUMN = "manage_{$screen->taxonomy}_custom_column";
+
+ /**
+ * Original hook name: manage_{$taxonomy}_custom_column
+ */
+ public static final String MANAGE_TAXONOMY_CUSTOM_COLUMN = "manage_{$taxonomy}_custom_column";
+
+ /**
+ * Original hook name: manage_{$this->screen->id}_custom_column
+ */
+ public static final String MANAGE_THIS_SCREEN_ID_CUSTOM_COLUMN = "manage_{$this->screen->id}_custom_column";
+
+ /**
+ * Original hook name: manage_{$this->screen->id}_custom_column_js_template
+ */
+ public static final String MANAGE_THIS_SCREEN_ID_CUSTOM_COLUMN_JS_TEMPLATE = "manage_{$this->screen->id}_custom_column_js_template";
+
+ /**
+ * Original hook name: manage_{$this->screen->id}_sortable_columns
+ */
+ public static final String MANAGE_THIS_SCREEN_ID_SORTABLE_COLUMNS = "manage_{$this->screen->id}_sortable_columns";
+
+ /**
+ * Original hook name: manage_{$this->screen->taxonomy}_custom_column
+ */
+ public static final String MANAGE_THIS_SCREEN_TAXONOMY_CUSTOM_COLUMN = "manage_{$this->screen->taxonomy}_custom_column";
+
+ /**
+ * Original hook name: map_meta_cap
+ */
+ public static final String MAP_META_CAP = "map_meta_cap";
+
+ /**
+ * Original hook name: mature_blog
+ */
+ public static final String MATURE_BLOG = "mature_blog";
+
+ /**
+ * Original hook name: max_srcset_image_width
+ */
+ public static final String MAX_SRCSET_IMAGE_WIDTH = "max_srcset_image_width";
+
+ /**
+ * Original hook name: mce_browsers
+ */
+ public static final String MCE_BROWSERS = "mce_browsers";
+
+ /**
+ * Original hook name: mce_buttons
+ */
+ public static final String MCE_BUTTONS = "mce_buttons";
+
+ /**
+ * Original hook name: mce_buttons_2
+ */
+ public static final String MCE_BUTTONS_2 = "mce_buttons_2";
+
+ /**
+ * Original hook name: mce_buttons_3
+ */
+ public static final String MCE_BUTTONS_3 = "mce_buttons_3";
+
+ /**
+ * Original hook name: mce_buttons_4
+ */
+ public static final String MCE_BUTTONS_4 = "mce_buttons_4";
+
+ /**
+ * Original hook name: mce_css
+ */
+ public static final String MCE_CSS = "mce_css";
+
+ /**
+ * Original hook name: mce_external_languages
+ */
+ public static final String MCE_EXTERNAL_LANGUAGES = "mce_external_languages";
+
+ /**
+ * Original hook name: mce_external_plugins
+ */
+ public static final String MCE_EXTERNAL_PLUGINS = "mce_external_plugins";
+
+ /**
+ * Original hook name: mce_options
+ */
+ public static final String MCE_OPTIONS = "mce_options";
+
+ /**
+ * Original hook name: mce_plugins
+ */
+ public static final String MCE_PLUGINS = "mce_plugins";
+
+ /**
+ * Original hook name: mce_spellchecker_languages
+ */
+ public static final String MCE_SPELLCHECKER_LANGUAGES = "mce_spellchecker_languages";
+
+ /**
+ * Original hook name: mce_theme
+ */
+ public static final String MCE_THEME = "mce_theme";
+
+ /**
+ * Original hook name: mce_valid_elements
+ */
+ public static final String MCE_VALID_ELEMENTS = "mce_valid_elements";
+
+ /**
+ * Original hook name: media_buttons
+ */
+ public static final String MEDIA_BUTTONS = "media_buttons";
+
+ /**
+ * Original hook name: media_buttons_context
+ */
+ public static final String MEDIA_BUTTONS_CONTEXT = "media_buttons_context";
+
+ /**
+ * Original hook name: media_date_column_time
+ */
+ public static final String MEDIA_DATE_COLUMN_TIME = "media_date_column_time";
+
+ /**
+ * Original hook name: media_embedded_in_content_allowed_types
+ */
+ public static final String MEDIA_EMBEDDED_IN_CONTENT_ALLOWED_TYPES = "media_embedded_in_content_allowed_types";
+
+ /**
+ * Original hook name: media_library_infinite_scrolling
+ */
+ public static final String MEDIA_LIBRARY_INFINITE_SCROLLING = "media_library_infinite_scrolling";
+
+ /**
+ * Original hook name: media_library_months_with_files
+ */
+ public static final String MEDIA_LIBRARY_MONTHS_WITH_FILES = "media_library_months_with_files";
+
+ /**
+ * Original hook name: media_library_show_audio_playlist
+ */
+ public static final String MEDIA_LIBRARY_SHOW_AUDIO_PLAYLIST = "media_library_show_audio_playlist";
+
+ /**
+ * Original hook name: media_library_show_video_playlist
+ */
+ public static final String MEDIA_LIBRARY_SHOW_VIDEO_PLAYLIST = "media_library_show_video_playlist";
+
+ /**
+ * Original hook name: media_meta
+ */
+ public static final String MEDIA_META = "media_meta";
+
+ /**
+ * Original hook name: media_row_actions
+ */
+ public static final String MEDIA_ROW_ACTIONS = "media_row_actions";
+
+ /**
+ * Original hook name: media_send_to_editor
+ */
+ public static final String MEDIA_SEND_TO_EDITOR = "media_send_to_editor";
+
+ /**
+ * Original hook name: media_submitbox_misc_sections
+ */
+ public static final String MEDIA_SUBMITBOX_MISC_SECTIONS = "media_submitbox_misc_sections";
+
+ /**
+ * Original hook name: media_upload_default_tab
+ */
+ public static final String MEDIA_UPLOAD_DEFAULT_TAB = "media_upload_default_tab";
+
+ /**
+ * Original hook name: media_upload_default_type
+ */
+ public static final String MEDIA_UPLOAD_DEFAULT_TYPE = "media_upload_default_type";
+
+ /**
+ * Original hook name: media_upload_form_url
+ */
+ public static final String MEDIA_UPLOAD_FORM_URL = "media_upload_form_url";
+
+ /**
+ * Original hook name: media_upload_mime_type_links
+ */
+ public static final String MEDIA_UPLOAD_MIME_TYPE_LINKS = "media_upload_mime_type_links";
+
+ /**
+ * Original hook name: media_upload_tabs
+ */
+ public static final String MEDIA_UPLOAD_TABS = "media_upload_tabs";
+
+ /**
+ * Original hook name: media_upload_{$tab}
+ */
+ public static final String MEDIA_UPLOAD_TAB = "media_upload_{$tab}";
+
+ /**
+ * Original hook name: media_upload_{$type}
+ */
+ public static final String MEDIA_UPLOAD_TYPE = "media_upload_{$type}";
+
+ /**
+ * Original hook name: media_view_settings
+ */
+ public static final String MEDIA_VIEW_SETTINGS = "media_view_settings";
+
+ /**
+ * Original hook name: media_view_strings
+ */
+ public static final String MEDIA_VIEW_STRINGS = "media_view_strings";
+
+ /**
+ * Original hook name: mejs_settings
+ */
+ public static final String MEJS_SETTINGS = "mejs_settings";
+
+ /**
+ * Original hook name: menu_order
+ */
+ public static final String MENU_ORDER = "menu_order";
+
+ /**
+ * Original hook name: meta_query_find_compatible_table_alias
+ */
+ public static final String META_QUERY_FIND_COMPATIBLE_TABLE_ALIAS = "meta_query_find_compatible_table_alias";
+
+ /**
+ * Original hook name: metadata_lazyloader_queued_objects
+ */
+ public static final String METADATA_LAZYLOADER_QUEUED_OBJECTS = "metadata_lazyloader_queued_objects";
+
+ /**
+ * Original hook name: mime_types
+ */
+ public static final String MIME_TYPES = "mime_types";
+
+ /**
+ * Original hook name: minimum_site_name_length
+ */
+ public static final String MINIMUM_SITE_NAME_LENGTH = "minimum_site_name_length";
+
+ /**
+ * Original hook name: mod_rewrite_rules
+ */
+ public static final String MOD_REWRITE_RULES = "mod_rewrite_rules";
+
+ /**
+ * Original hook name: month_link
+ */
+ public static final String MONTH_LINK = "month_link";
+
+ /**
+ * Original hook name: months_dropdown_results
+ */
+ public static final String MONTHS_DROPDOWN_RESULTS = "months_dropdown_results";
+
+ /**
+ * Original hook name: ms_loaded
+ */
+ public static final String MS_LOADED = "ms_loaded";
+
+ /**
+ * Original hook name: ms_network_not_found
+ */
+ public static final String MS_NETWORK_NOT_FOUND = "ms_network_not_found";
+
+ /**
+ * Original hook name: ms_site_check
+ */
+ public static final String MS_SITE_CHECK = "ms_site_check";
+
+ /**
+ * Original hook name: ms_site_not_found
+ */
+ public static final String MS_SITE_NOT_FOUND = "ms_site_not_found";
+
+ /**
+ * Original hook name: ms_sites_list_table_query_args
+ */
+ public static final String MS_SITES_LIST_TABLE_QUERY_ARGS = "ms_sites_list_table_query_args";
+
+ /**
+ * Original hook name: ms_sites_per_page
+ */
+ public static final String MS_SITES_PER_PAGE = "ms_sites_per_page";
+
+ /**
+ * Original hook name: ms_user_list_site_actions
+ */
+ public static final String MS_USER_LIST_SITE_ACTIONS = "ms_user_list_site_actions";
+
+ /**
+ * Original hook name: ms_user_list_site_class
+ */
+ public static final String MS_USER_LIST_SITE_CLASS = "ms_user_list_site_class";
+
+ /**
+ * Original hook name: ms_user_row_actions
+ */
+ public static final String MS_USER_ROW_ACTIONS = "ms_user_row_actions";
+
+ /**
+ * Original hook name: ms_users_per_page
+ */
+ public static final String MS_USERS_PER_PAGE = "ms_users_per_page";
+
+ /**
+ * Original hook name: mu_activity_box_end
+ */
+ public static final String MU_ACTIVITY_BOX_END = "mu_activity_box_end";
+
+ /**
+ * Original hook name: mu_dropdown_languages
+ */
+ public static final String MU_DROPDOWN_LANGUAGES = "mu_dropdown_languages";
+
+ /**
+ * Original hook name: mu_menu_items
+ */
+ public static final String MU_MENU_ITEMS = "mu_menu_items";
+
+ /**
+ * Original hook name: mu_plugin_loaded
+ */
+ public static final String MU_PLUGIN_LOADED = "mu_plugin_loaded";
+
+ /**
+ * Original hook name: mu_rightnow_end
+ */
+ public static final String MU_RIGHTNOW_END = "mu_rightnow_end";
+
+ /**
+ * Original hook name: muplugins_loaded
+ */
+ public static final String MUPLUGINS_LOADED = "muplugins_loaded";
+
+ /**
+ * Original hook name: myblogs_allblogs_options
+ */
+ public static final String MYBLOGS_ALLBLOGS_OPTIONS = "myblogs_allblogs_options";
+
+ /**
+ * Original hook name: myblogs_blog_actions
+ */
+ public static final String MYBLOGS_BLOG_ACTIONS = "myblogs_blog_actions";
+
+ /**
+ * Original hook name: myblogs_options
+ */
+ public static final String MYBLOGS_OPTIONS = "myblogs_options";
+
+ /**
+ * Original hook name: nag_posts_limit
+ */
+ public static final String NAG_POSTS_LIMIT = "nag_posts_limit";
+
+ /**
+ * Original hook name: name_save_pre
+ */
+ public static final String NAME_SAVE_PRE = "name_save_pre";
+
+ /**
+ * Original hook name: nav_menu_attr_title
+ */
+ public static final String NAV_MENU_ATTR_TITLE = "nav_menu_attr_title";
+
+ /**
+ * Original hook name: nav_menu_css_class
+ */
+ public static final String NAV_MENU_CSS_CLASS = "nav_menu_css_class";
+
+ /**
+ * Original hook name: nav_menu_description
+ */
+ public static final String NAV_MENU_DESCRIPTION = "nav_menu_description";
+
+ /**
+ * Original hook name: nav_menu_item_args
+ */
+ public static final String NAV_MENU_ITEM_ARGS = "nav_menu_item_args";
+
+ /**
+ * Original hook name: nav_menu_item_attributes
+ */
+ public static final String NAV_MENU_ITEM_ATTRIBUTES = "nav_menu_item_attributes";
+
+ /**
+ * Original hook name: nav_menu_item_id
+ */
+ public static final String NAV_MENU_ITEM_ID = "nav_menu_item_id";
+
+ /**
+ * Original hook name: nav_menu_item_title
+ */
+ public static final String NAV_MENU_ITEM_TITLE = "nav_menu_item_title";
+
+ /**
+ * Original hook name: nav_menu_items_{$post_type_name}
+ */
+ public static final String NAV_MENU_ITEMS_POST_TYPE_NAME = "nav_menu_items_{$post_type_name}";
+
+ /**
+ * Original hook name: nav_menu_items_{$post_type_name}_recent
+ */
+ public static final String NAV_MENU_ITEMS_POST_TYPE_NAME_RECENT = "nav_menu_items_{$post_type_name}_recent";
+
+ /**
+ * Original hook name: nav_menu_link_attributes
+ */
+ public static final String NAV_MENU_LINK_ATTRIBUTES = "nav_menu_link_attributes";
+
+ /**
+ * Original hook name: nav_menu_meta_box_object
+ */
+ public static final String NAV_MENU_META_BOX_OBJECT = "nav_menu_meta_box_object";
+
+ /**
+ * Original hook name: nav_menu_submenu_attributes
+ */
+ public static final String NAV_MENU_SUBMENU_ATTRIBUTES = "nav_menu_submenu_attributes";
+
+ /**
+ * Original hook name: nav_menu_submenu_css_class
+ */
+ public static final String NAV_MENU_SUBMENU_CSS_CLASS = "nav_menu_submenu_css_class";
+
+ /**
+ * Original hook name: navigation_markup_template
+ */
+ public static final String NAVIGATION_MARKUP_TEMPLATE = "navigation_markup_template";
+
+ /**
+ * Original hook name: navigation_widgets_format
+ */
+ public static final String NAVIGATION_WIDGETS_FORMAT = "navigation_widgets_format";
+
+ /**
+ * Original hook name: network_admin_edit_{$action}
+ */
+ public static final String NETWORK_ADMIN_EDIT_ACTION = "network_admin_edit_{$action}";
+
+ /**
+ * Original hook name: network_admin_email_change_email
+ */
+ public static final String NETWORK_ADMIN_EMAIL_CHANGE_EMAIL = "network_admin_email_change_email";
+
+ /**
+ * Original hook name: network_admin_menu
+ */
+ public static final String NETWORK_ADMIN_MENU_2 = "network_admin_menu";
+
+ /**
+ * Original hook name: network_admin_notices
+ */
+ public static final String NETWORK_ADMIN_NOTICES = "network_admin_notices";
+
+ /**
+ * Original hook name: network_admin_plugin_action_links
+ */
+ public static final String NETWORK_ADMIN_PLUGIN_ACTION_LINKS = "network_admin_plugin_action_links";
+
+ /**
+ * Original hook name: network_admin_plugin_action_links_{$plugin_file}
+ */
+ public static final String NETWORK_ADMIN_PLUGIN_ACTION_LINKS_PLUGIN_FILE = "network_admin_plugin_action_links_{$plugin_file}";
+
+ /**
+ * Original hook name: network_admin_url
+ */
+ public static final String NETWORK_ADMIN_URL = "network_admin_url";
+
+ /**
+ * Original hook name: network_allowed_themes
+ */
+ public static final String NETWORK_ALLOWED_THEMES = "network_allowed_themes";
+
+ /**
+ * Original hook name: network_by_path_segments_count
+ */
+ public static final String NETWORK_BY_PATH_SEGMENTS_COUNT = "network_by_path_segments_count";
+
+ /**
+ * Original hook name: network_edit_site_nav_links
+ */
+ public static final String NETWORK_EDIT_SITE_NAV_LINKS = "network_edit_site_nav_links";
+
+ /**
+ * Original hook name: network_home_url
+ */
+ public static final String NETWORK_HOME_URL = "network_home_url";
+
+ /**
+ * Original hook name: network_plugin_loaded
+ */
+ public static final String NETWORK_PLUGIN_LOADED = "network_plugin_loaded";
+
+ /**
+ * Original hook name: network_site_info_form
+ */
+ public static final String NETWORK_SITE_INFO_FORM = "network_site_info_form";
+
+ /**
+ * Original hook name: network_site_new_created_user
+ */
+ public static final String NETWORK_SITE_NEW_CREATED_USER = "network_site_new_created_user";
+
+ /**
+ * Original hook name: network_site_new_form
+ */
+ public static final String NETWORK_SITE_NEW_FORM = "network_site_new_form";
+
+ /**
+ * Original hook name: network_site_url
+ */
+ public static final String NETWORK_SITE_URL = "network_site_url";
+
+ /**
+ * Original hook name: network_site_users_after_list_table
+ */
+ public static final String NETWORK_SITE_USERS_AFTER_LIST_TABLE = "network_site_users_after_list_table";
+
+ /**
+ * Original hook name: network_site_users_created_user
+ */
+ public static final String NETWORK_SITE_USERS_CREATED_USER = "network_site_users_created_user";
+
+ /**
+ * Original hook name: network_sites_updated_message_{$action}
+ */
+ public static final String NETWORK_SITES_UPDATED_MESSAGE_ACTION = "network_sites_updated_message_{$action}";
+
+ /**
+ * Original hook name: network_sites_updated_message_{$updated}
+ */
+ public static final String NETWORK_SITES_UPDATED_MESSAGE_UPDATED = "network_sites_updated_message_{$updated}";
+
+ /**
+ * Original hook name: network_user_new_created_user
+ */
+ public static final String NETWORK_USER_NEW_CREATED_USER = "network_user_new_created_user";
+
+ /**
+ * Original hook name: network_user_new_form
+ */
+ public static final String NETWORK_USER_NEW_FORM = "network_user_new_form";
+
+ /**
+ * Original hook name: networks_clauses
+ */
+ public static final String NETWORKS_CLAUSES = "networks_clauses";
+
+ /**
+ * Original hook name: networks_pre_query
+ */
+ public static final String NETWORKS_PRE_QUERY = "networks_pre_query";
+
+ /**
+ * Original hook name: new_admin_email_content
+ */
+ public static final String NEW_ADMIN_EMAIL_CONTENT = "new_admin_email_content";
+
+ /**
+ * Original hook name: new_admin_email_subject
+ */
+ public static final String NEW_ADMIN_EMAIL_SUBJECT = "new_admin_email_subject";
+
+ /**
+ * Original hook name: new_network_admin_email_content
+ */
+ public static final String NEW_NETWORK_ADMIN_EMAIL_CONTENT = "new_network_admin_email_content";
+
+ /**
+ * Original hook name: new_site_email
+ */
+ public static final String NEW_SITE_EMAIL = "new_site_email";
+
+ /**
+ * Original hook name: new_user_email_content
+ */
+ public static final String NEW_USER_EMAIL_CONTENT = "new_user_email_content";
+
+ /**
+ * Original hook name: newblog_notify_siteadmin
+ */
+ public static final String NEWBLOG_NOTIFY_SITEADMIN = "newblog_notify_siteadmin";
+
+ /**
+ * Original hook name: newblogname
+ */
+ public static final String NEWBLOGNAME = "newblogname";
+
+ /**
+ * Original hook name: newuser_notify_siteadmin
+ */
+ public static final String NEWUSER_NOTIFY_SITEADMIN = "newuser_notify_siteadmin";
+
+ /**
+ * Original hook name: next_comments_link_attributes
+ */
+ public static final String NEXT_COMMENTS_LINK_ATTRIBUTES = "next_comments_link_attributes";
+
+ /**
+ * Original hook name: next_posts_link_attributes
+ */
+ public static final String NEXT_POSTS_LINK_ATTRIBUTES = "next_posts_link_attributes";
+
+ /**
+ * Original hook name: ngettext
+ */
+ public static final String NGETTEXT = "ngettext";
+
+ /**
+ * Original hook name: ngettext_with_context
+ */
+ public static final String NGETTEXT_WITH_CONTEXT = "ngettext_with_context";
+
+ /**
+ * Original hook name: ngettext_with_context_{$domain}
+ */
+ public static final String NGETTEXT_WITH_CONTEXT_DOMAIN = "ngettext_with_context_{$domain}";
+
+ /**
+ * Original hook name: ngettext_{$domain}
+ */
+ public static final String NGETTEXT_DOMAIN = "ngettext_{$domain}";
+
+ /**
+ * Original hook name: no_texturize_shortcodes
+ */
+ public static final String NO_TEXTURIZE_SHORTCODES = "no_texturize_shortcodes";
+
+ /**
+ * Original hook name: no_texturize_tags
+ */
+ public static final String NO_TEXTURIZE_TAGS = "no_texturize_tags";
+
+ /**
+ * Original hook name: nocache_headers
+ */
+ public static final String NOCACHE_HEADERS = "nocache_headers";
+
+ /**
+ * Original hook name: nonce_life
+ */
+ public static final String NONCE_LIFE = "nonce_life";
+
+ /**
+ * Original hook name: nonce_user_logged_out
+ */
+ public static final String NONCE_USER_LOGGED_OUT = "nonce_user_logged_out";
+
+ /**
+ * Original hook name: notify_moderator
+ */
+ public static final String NOTIFY_MODERATOR = "notify_moderator";
+
+ /**
+ * Original hook name: notify_post_author
+ */
+ public static final String NOTIFY_POST_AUTHOR = "notify_post_author";
+
+ /**
+ * Original hook name: number_format_i18n
+ */
+ public static final String NUMBER_FORMAT_I18N = "number_format_i18n";
+
+ /**
+ * Original hook name: oembed_dataparse
+ */
+ public static final String OEMBED_DATAPARSE = "oembed_dataparse";
+
+ /**
+ * Original hook name: oembed_default_width
+ */
+ public static final String OEMBED_DEFAULT_WIDTH = "oembed_default_width";
+
+ /**
+ * Original hook name: oembed_discovery_links
+ */
+ public static final String OEMBED_DISCOVERY_LINKS = "oembed_discovery_links";
+
+ /**
+ * Original hook name: oembed_endpoint_url
+ */
+ public static final String OEMBED_ENDPOINT_URL = "oembed_endpoint_url";
+
+ /**
+ * Original hook name: oembed_fetch_url
+ */
+ public static final String OEMBED_FETCH_URL = "oembed_fetch_url";
+
+ /**
+ * Original hook name: oembed_iframe_title_attribute
+ */
+ public static final String OEMBED_IFRAME_TITLE_ATTRIBUTE = "oembed_iframe_title_attribute";
+
+ /**
+ * Original hook name: oembed_linktypes
+ */
+ public static final String OEMBED_LINKTYPES = "oembed_linktypes";
+
+ /**
+ * Original hook name: oembed_min_max_width
+ */
+ public static final String OEMBED_MIN_MAX_WIDTH = "oembed_min_max_width";
+
+ /**
+ * Original hook name: oembed_providers
+ */
+ public static final String OEMBED_PROVIDERS = "oembed_providers";
+
+ /**
+ * Original hook name: oembed_remote_get_args
+ */
+ public static final String OEMBED_REMOTE_GET_ARGS = "oembed_remote_get_args";
+
+ /**
+ * Original hook name: oembed_request_post_id
+ */
+ public static final String OEMBED_REQUEST_POST_ID = "oembed_request_post_id";
+
+ /**
+ * Original hook name: oembed_response_data
+ */
+ public static final String OEMBED_RESPONSE_DATA = "oembed_response_data";
+
+ /**
+ * Original hook name: oembed_result
+ */
+ public static final String OEMBED_RESULT = "oembed_result";
+
+ /**
+ * Original hook name: oembed_ttl
+ */
+ public static final String OEMBED_TTL = "oembed_ttl";
+
+ /**
+ * Original hook name: old_slug_redirect_post_id
+ */
+ public static final String OLD_SLUG_REDIRECT_POST_ID = "old_slug_redirect_post_id";
+
+ /**
+ * Original hook name: old_slug_redirect_url
+ */
+ public static final String OLD_SLUG_REDIRECT_URL = "old_slug_redirect_url";
+
+ /**
+ * Original hook name: opml_head
+ */
+ public static final String OPML_HEAD = "opml_head";
+
+ /**
+ * Original hook name: option_enable_xmlrpc
+ */
+ public static final String OPTION_ENABLE_XMLRPC = "option_enable_xmlrpc";
+
+ /**
+ * Original hook name: option_page_capability_{$option_page}
+ */
+ public static final String OPTION_PAGE_CAPABILITY_OPTION_PAGE = "option_page_capability_{$option_page}";
+
+ /**
+ * Original hook name: option_{$option_name}
+ */
+ public static final String OPTION_OPTION_NAME = "option_{$option_name}";
+
+ /**
+ * Original hook name: option_{$option}
+ */
+ public static final String OPTION_OPTION = "option_{$option}";
+
+ /**
+ * Original hook name: option_{$setting}
+ */
+ public static final String OPTION_SETTING = "option_{$setting}";
+
+ /**
+ * Original hook name: override_load_textdomain
+ */
+ public static final String OVERRIDE_LOAD_TEXTDOMAIN = "override_load_textdomain";
+
+ /**
+ * Original hook name: override_post_lock
+ */
+ public static final String OVERRIDE_POST_LOCK = "override_post_lock";
+
+ /**
+ * Original hook name: override_unload_textdomain
+ */
+ public static final String OVERRIDE_UNLOAD_TEXTDOMAIN = "override_unload_textdomain";
+
+ /**
+ * Original hook name: page_attributes_dropdown_pages_args
+ */
+ public static final String PAGE_ATTRIBUTES_DROPDOWN_PAGES_ARGS = "page_attributes_dropdown_pages_args";
+
+ /**
+ * Original hook name: page_attributes_meta_box_template
+ */
+ public static final String PAGE_ATTRIBUTES_META_BOX_TEMPLATE = "page_attributes_meta_box_template";
+
+ /**
+ * Original hook name: page_attributes_misc_attributes
+ */
+ public static final String PAGE_ATTRIBUTES_MISC_ATTRIBUTES = "page_attributes_misc_attributes";
+
+ /**
+ * Original hook name: page_css_class
+ */
+ public static final String PAGE_CSS_CLASS = "page_css_class";
+
+ /**
+ * Original hook name: page_link
+ */
+ public static final String PAGE_LINK = "page_link";
+
+ /**
+ * Original hook name: page_menu_link_attributes
+ */
+ public static final String PAGE_MENU_LINK_ATTRIBUTES = "page_menu_link_attributes";
+
+ /**
+ * Original hook name: page_relatedlinks_list
+ */
+ public static final String PAGE_RELATEDLINKS_LIST = "page_relatedlinks_list";
+
+ /**
+ * Original hook name: page_rewrite_rules
+ */
+ public static final String PAGE_REWRITE_RULES = "page_rewrite_rules";
+
+ /**
+ * Original hook name: page_row_actions
+ */
+ public static final String PAGE_ROW_ACTIONS = "page_row_actions";
+
+ /**
+ * Original hook name: page_stati
+ */
+ public static final String PAGE_STATI = "page_stati";
+
+ /**
+ * Original hook name: page_template
+ */
+ public static final String PAGE_TEMPLATE = "page_template";
+
+ /**
+ * Original hook name: page_template_hierarchy
+ */
+ public static final String PAGE_TEMPLATE_HIERARCHY = "page_template_hierarchy";
+
+ /**
+ * Original hook name: paginate_links
+ */
+ public static final String PAGINATE_LINKS = "paginate_links";
+
+ /**
+ * Original hook name: paginate_links_output
+ */
+ public static final String PAGINATE_LINKS_OUTPUT = "paginate_links_output";
+
+ /**
+ * Original hook name: parent_file
+ */
+ public static final String PARENT_FILE = "parent_file";
+
+ /**
+ * Original hook name: parent_post_rel_link
+ */
+ public static final String PARENT_POST_REL_LINK = "parent_post_rel_link";
+
+ /**
+ * Original hook name: parent_theme_file_path
+ */
+ public static final String PARENT_THEME_FILE_PATH = "parent_theme_file_path";
+
+ /**
+ * Original hook name: parent_theme_file_uri
+ */
+ public static final String PARENT_THEME_FILE_URI = "parent_theme_file_uri";
+
+ /**
+ * Original hook name: parse_comment_query
+ */
+ public static final String PARSE_COMMENT_QUERY = "parse_comment_query";
+
+ /**
+ * Original hook name: parse_network_query
+ */
+ public static final String PARSE_NETWORK_QUERY = "parse_network_query";
+
+ /**
+ * Original hook name: parse_query
+ */
+ public static final String PARSE_QUERY = "parse_query";
+
+ /**
+ * Original hook name: parse_request
+ */
+ public static final String PARSE_REQUEST = "parse_request";
+
+ /**
+ * Original hook name: parse_site_query
+ */
+ public static final String PARSE_SITE_QUERY = "parse_site_query";
+
+ /**
+ * Original hook name: parse_tax_query
+ */
+ public static final String PARSE_TAX_QUERY = "parse_tax_query";
+
+ /**
+ * Original hook name: parse_term_query
+ */
+ public static final String PARSE_TERM_QUERY = "parse_term_query";
+
+ /**
+ * Original hook name: password_change_email
+ */
+ public static final String PASSWORD_CHANGE_EMAIL = "password_change_email";
+
+ /**
+ * Original hook name: password_hint
+ */
+ public static final String PASSWORD_HINT = "password_hint";
+
+ /**
+ * Original hook name: password_needs_rehash
+ */
+ public static final String PASSWORD_NEEDS_REHASH = "password_needs_rehash";
+
+ /**
+ * Original hook name: password_reset
+ */
+ public static final String PASSWORD_RESET = "password_reset";
+
+ /**
+ * Original hook name: password_reset_expiration
+ */
+ public static final String PASSWORD_RESET_EXPIRATION = "password_reset_expiration";
+
+ /**
+ * Original hook name: password_reset_key_expired
+ */
+ public static final String PASSWORD_RESET_KEY_EXPIRED = "password_reset_key_expired";
+
+ /**
+ * Original hook name: password_reset_message
+ */
+ public static final String PASSWORD_RESET_MESSAGE = "password_reset_message";
+
+ /**
+ * Original hook name: password_reset_title
+ */
+ public static final String PASSWORD_RESET_TITLE = "password_reset_title";
+
+ /**
+ * Original hook name: permalink_structure_changed
+ */
+ public static final String PERMALINK_STRUCTURE_CHANGED = "permalink_structure_changed";
+
+ /**
+ * Original hook name: personal_options
+ */
+ public static final String PERSONAL_OPTIONS = "personal_options";
+
+ /**
+ * Original hook name: personal_options_update
+ */
+ public static final String PERSONAL_OPTIONS_UPDATE = "personal_options_update";
+
+ /**
+ * Original hook name: phone_content
+ */
+ public static final String PHONE_CONTENT = "phone_content";
+
+ /**
+ * Original hook name: phpmailer_init
+ */
+ public static final String PHPMAILER_INIT = "phpmailer_init";
+
+ /**
+ * Original hook name: ping_status_pre
+ */
+ public static final String PING_STATUS_PRE = "ping_status_pre";
+
+ /**
+ * Original hook name: pingback_ping_source_uri
+ */
+ public static final String PINGBACK_PING_SOURCE_URI = "pingback_ping_source_uri";
+
+ /**
+ * Original hook name: pingback_post
+ */
+ public static final String PINGBACK_POST = "pingback_post";
+
+ /**
+ * Original hook name: pingback_useragent
+ */
+ public static final String PINGBACK_USERAGENT = "pingback_useragent";
+
+ /**
+ * Original hook name: pings_open
+ */
+ public static final String PINGS_OPEN = "pings_open";
+
+ /**
+ * Original hook name: plugin_action_links
+ */
+ public static final String PLUGIN_ACTION_LINKS = "plugin_action_links";
+
+ /**
+ * Original hook name: plugin_action_links_{$plugin_file}
+ */
+ public static final String PLUGIN_ACTION_LINKS_PLUGIN_FILE = "plugin_action_links_{$plugin_file}";
+
+ /**
+ * Original hook name: plugin_auto_update_debug_string
+ */
+ public static final String PLUGIN_AUTO_UPDATE_DEBUG_STRING = "plugin_auto_update_debug_string";
+
+ /**
+ * Original hook name: plugin_auto_update_setting_html
+ */
+ public static final String PLUGIN_AUTO_UPDATE_SETTING_HTML = "plugin_auto_update_setting_html";
+
+ /**
+ * Original hook name: plugin_files_exclusions
+ */
+ public static final String PLUGIN_FILES_EXCLUSIONS = "plugin_files_exclusions";
+
+ /**
+ * Original hook name: plugin_install_action_links
+ */
+ public static final String PLUGIN_INSTALL_ACTION_LINKS = "plugin_install_action_links";
+
+ /**
+ * Original hook name: plugin_install_description
+ */
+ public static final String PLUGIN_INSTALL_DESCRIPTION = "plugin_install_description";
+
+ /**
+ * Original hook name: plugin_loaded
+ */
+ public static final String PLUGIN_LOADED = "plugin_loaded";
+
+ /**
+ * Original hook name: plugin_locale
+ */
+ public static final String PLUGIN_LOCALE = "plugin_locale";
+
+ /**
+ * Original hook name: plugin_row_meta
+ */
+ public static final String PLUGIN_ROW_META = "plugin_row_meta";
+
+ /**
+ * Original hook name: plugins_api
+ */
+ public static final String PLUGINS_API = "plugins_api";
+
+ /**
+ * Original hook name: plugins_api_args
+ */
+ public static final String PLUGINS_API_ARGS = "plugins_api_args";
+
+ /**
+ * Original hook name: plugins_api_result
+ */
+ public static final String PLUGINS_API_RESULT = "plugins_api_result";
+
+ /**
+ * Original hook name: plugins_auto_update_enabled
+ */
+ public static final String PLUGINS_AUTO_UPDATE_ENABLED = "plugins_auto_update_enabled";
+
+ /**
+ * Original hook name: plugins_list
+ */
+ public static final String PLUGINS_LIST = "plugins_list";
+
+ /**
+ * Original hook name: plugins_loaded
+ */
+ public static final String PLUGINS_LOADED = "plugins_loaded";
+
+ /**
+ * Original hook name: plugins_per_page
+ */
+ public static final String PLUGINS_PER_PAGE = "plugins_per_page";
+
+ /**
+ * Original hook name: plugins_update_check_locales
+ */
+ public static final String PLUGINS_UPDATE_CHECK_LOCALES = "plugins_update_check_locales";
+
+ /**
+ * Original hook name: plugins_url
+ */
+ public static final String PLUGINS_URL = "plugins_url";
+
+ /**
+ * Original hook name: plupload_default_params
+ */
+ public static final String PLUPLOAD_DEFAULT_PARAMS = "plupload_default_params";
+
+ /**
+ * Original hook name: plupload_default_settings
+ */
+ public static final String PLUPLOAD_DEFAULT_SETTINGS = "plupload_default_settings";
+
+ /**
+ * Original hook name: plupload_init
+ */
+ public static final String PLUPLOAD_INIT = "plupload_init";
+
+ /**
+ * Original hook name: populate_network_meta
+ */
+ public static final String POPULATE_NETWORK_META = "populate_network_meta";
+
+ /**
+ * Original hook name: populate_options
+ */
+ public static final String POPULATE_OPTIONS = "populate_options";
+
+ /**
+ * Original hook name: populate_site_meta
+ */
+ public static final String POPULATE_SITE_META = "populate_site_meta";
+
+ /**
+ * Original hook name: post-flash-upload-ui
+ */
+ public static final String POST_FLASH_UPLOAD_UI = "post-flash-upload-ui";
+
+ /**
+ * Original hook name: post-html-upload-ui
+ */
+ public static final String POST_HTML_UPLOAD_UI = "post-html-upload-ui";
+
+ /**
+ * Original hook name: post-plupload-upload-ui
+ */
+ public static final String POST_PLUPLOAD_UPLOAD_UI = "post-plupload-upload-ui";
+
+ /**
+ * Original hook name: post-upload-ui
+ */
+ public static final String POST_UPLOAD_UI = "post-upload-ui";
+
+ /**
+ * Original hook name: post_action_{$action}
+ */
+ public static final String POST_ACTION_ACTION = "post_action_{$action}";
+
+ /**
+ * Original hook name: post_class
+ */
+ public static final String POST_CLASS = "post_class";
+
+ /**
+ * Original hook name: post_class_taxonomies
+ */
+ public static final String POST_CLASS_TAXONOMIES = "post_class_taxonomies";
+
+ /**
+ * Original hook name: post_column_taxonomy_links
+ */
+ public static final String POST_COLUMN_TAXONOMY_LINKS = "post_column_taxonomy_links";
+
+ /**
+ * Original hook name: post_comment_status_meta_box-options
+ */
+ public static final String POST_COMMENT_STATUS_META_BOX_OPTIONS = "post_comment_status_meta_box-options";
+
+ /**
+ * Original hook name: post_comment_text
+ */
+ public static final String POST_COMMENT_TEXT = "post_comment_text";
+
+ /**
+ * Original hook name: post_comments_feed_link
+ */
+ public static final String POST_COMMENTS_FEED_LINK = "post_comments_feed_link";
+
+ /**
+ * Original hook name: post_comments_feed_link_html
+ */
+ public static final String POST_COMMENTS_FEED_LINK_HTML = "post_comments_feed_link_html";
+
+ /**
+ * Original hook name: post_comments_link
+ */
+ public static final String POST_COMMENTS_LINK = "post_comments_link";
+
+ /**
+ * Original hook name: post_date_column_status
+ */
+ public static final String POST_DATE_COLUMN_STATUS = "post_date_column_status";
+
+ /**
+ * Original hook name: post_date_column_time
+ */
+ public static final String POST_DATE_COLUMN_TIME = "post_date_column_time";
+
+ /**
+ * Original hook name: post_edit_category_parent_dropdown_args
+ */
+ public static final String POST_EDIT_CATEGORY_PARENT_DROPDOWN_ARGS = "post_edit_category_parent_dropdown_args";
+
+ /**
+ * Original hook name: post_edit_form_tag
+ */
+ public static final String POST_EDIT_FORM_TAG = "post_edit_form_tag";
+
+ /**
+ * Original hook name: post_embed_url
+ */
+ public static final String POST_EMBED_URL = "post_embed_url";
+
+ /**
+ * Original hook name: post_format_rewrite_base
+ */
+ public static final String POST_FORMAT_REWRITE_BASE = "post_format_rewrite_base";
+
+ /**
+ * Original hook name: post_gallery
+ */
+ public static final String POST_GALLERY = "post_gallery";
+
+ /**
+ * Original hook name: post_limits
+ */
+ public static final String POST_LIMITS = "post_limits";
+
+ /**
+ * Original hook name: post_limits_request
+ */
+ public static final String POST_LIMITS_REQUEST = "post_limits_request";
+
+ /**
+ * Original hook name: post_link
+ */
+ public static final String POST_LINK = "post_link";
+
+ /**
+ * Original hook name: post_link_category
+ */
+ public static final String POST_LINK_CATEGORY = "post_link_category";
+
+ /**
+ * Original hook name: post_lock_lost_dialog
+ */
+ public static final String POST_LOCK_LOST_DIALOG = "post_lock_lost_dialog";
+
+ /**
+ * Original hook name: post_locked_dialog
+ */
+ public static final String POST_LOCKED_DIALOG = "post_locked_dialog";
+
+ /**
+ * Original hook name: post_mime_type_pre
+ */
+ public static final String POST_MIME_TYPE_PRE = "post_mime_type_pre";
+
+ /**
+ * Original hook name: post_mime_types
+ */
+ public static final String POST_MIME_TYPES = "post_mime_types";
+
+ /**
+ * Original hook name: post_password_expires
+ */
+ public static final String POST_PASSWORD_EXPIRES = "post_password_expires";
+
+ /**
+ * Original hook name: post_password_required
+ */
+ public static final String POST_PASSWORD_REQUIRED = "post_password_required";
+
+ /**
+ * Original hook name: post_playlist
+ */
+ public static final String POST_PLAYLIST = "post_playlist";
+
+ /**
+ * Original hook name: post_relatedlinks_list
+ */
+ public static final String POST_RELATEDLINKS_LIST = "post_relatedlinks_list";
+
+ /**
+ * Original hook name: post_rewrite_rules
+ */
+ public static final String POST_REWRITE_RULES = "post_rewrite_rules";
+
+ /**
+ * Original hook name: post_row_actions
+ */
+ public static final String POST_ROW_ACTIONS = "post_row_actions";
+
+ /**
+ * Original hook name: post_search_columns
+ */
+ public static final String POST_SEARCH_COLUMNS = "post_search_columns";
+
+ /**
+ * Original hook name: post_states_html
+ */
+ public static final String POST_STATES_HTML = "post_states_html";
+
+ /**
+ * Original hook name: post_stati
+ */
+ public static final String POST_STATI = "post_stati";
+
+ /**
+ * Original hook name: post_stuck
+ */
+ public static final String POST_STUCK = "post_stuck";
+
+ /**
+ * Original hook name: post_submitbox_minor_actions
+ */
+ public static final String POST_SUBMITBOX_MINOR_ACTIONS = "post_submitbox_minor_actions";
+
+ /**
+ * Original hook name: post_submitbox_misc_actions
+ */
+ public static final String POST_SUBMITBOX_MISC_ACTIONS = "post_submitbox_misc_actions";
+
+ /**
+ * Original hook name: post_submitbox_start
+ */
+ public static final String POST_SUBMITBOX_START = "post_submitbox_start";
+
+ /**
+ * Original hook name: post_thumbnail_html
+ */
+ public static final String POST_THUMBNAIL_HTML = "post_thumbnail_html";
+
+ /**
+ * Original hook name: post_thumbnail_id
+ */
+ public static final String POST_THUMBNAIL_ID = "post_thumbnail_id";
+
+ /**
+ * Original hook name: post_thumbnail_size
+ */
+ public static final String POST_THUMBNAIL_SIZE = "post_thumbnail_size";
+
+ /**
+ * Original hook name: post_thumbnail_url
+ */
+ public static final String POST_THUMBNAIL_URL = "post_thumbnail_url";
+
+ /**
+ * Original hook name: post_type_archive_feed_link
+ */
+ public static final String POST_TYPE_ARCHIVE_FEED_LINK = "post_type_archive_feed_link";
+
+ /**
+ * Original hook name: post_type_archive_link
+ */
+ public static final String POST_TYPE_ARCHIVE_LINK = "post_type_archive_link";
+
+ /**
+ * Original hook name: post_type_archive_title
+ */
+ public static final String POST_TYPE_ARCHIVE_TITLE = "post_type_archive_title";
+
+ /**
+ * Original hook name: post_type_labels_{$post_type}
+ */
+ public static final String POST_TYPE_LABELS_POST_TYPE = "post_type_labels_{$post_type}";
+
+ /**
+ * Original hook name: post_type_link
+ */
+ public static final String POST_TYPE_LINK = "post_type_link";
+
+ /**
+ * Original hook name: post_types_to_delete_with_user
+ */
+ public static final String POST_TYPES_TO_DELETE_WITH_USER = "post_types_to_delete_with_user";
+
+ /**
+ * Original hook name: post_unstuck
+ */
+ public static final String POST_UNSTUCK = "post_unstuck";
+
+ /**
+ * Original hook name: post_updated
+ */
+ public static final String POST_UPDATED = "post_updated";
+
+ /**
+ * Original hook name: post_updated_messages
+ */
+ public static final String POST_UPDATED_MESSAGES = "post_updated_messages";
+
+ /**
+ * Original hook name: post_{$field}
+ */
+ public static final String POST_FIELD = "post_{$field}";
+
+ /**
+ * Original hook name: postbox_classes_{$page}_{$id}
+ */
+ public static final String POSTBOX_CLASSES_PAGE_ID = "postbox_classes_{$page}_{$id}";
+
+ /**
+ * Original hook name: postbox_classes_{$screen_id}_{$box_id}
+ */
+ public static final String POSTBOX_CLASSES_SCREEN_ID_BOX_ID = "postbox_classes_{$screen_id}_{$box_id}";
+
+ /**
+ * Original hook name: postmeta_form_keys
+ */
+ public static final String POSTMETA_FORM_KEYS = "postmeta_form_keys";
+
+ /**
+ * Original hook name: postmeta_form_limit
+ */
+ public static final String POSTMETA_FORM_LIMIT = "postmeta_form_limit";
+
+ /**
+ * Original hook name: posts_clauses
+ */
+ public static final String POSTS_CLAUSES = "posts_clauses";
+
+ /**
+ * Original hook name: posts_clauses_request
+ */
+ public static final String POSTS_CLAUSES_REQUEST = "posts_clauses_request";
+
+ /**
+ * Original hook name: posts_distinct
+ */
+ public static final String POSTS_DISTINCT = "posts_distinct";
+
+ /**
+ * Original hook name: posts_distinct_request
+ */
+ public static final String POSTS_DISTINCT_REQUEST = "posts_distinct_request";
+
+ /**
+ * Original hook name: posts_fields
+ */
+ public static final String POSTS_FIELDS = "posts_fields";
+
+ /**
+ * Original hook name: posts_fields_request
+ */
+ public static final String POSTS_FIELDS_REQUEST = "posts_fields_request";
+
+ /**
+ * Original hook name: posts_groupby
+ */
+ public static final String POSTS_GROUPBY = "posts_groupby";
+
+ /**
+ * Original hook name: posts_groupby_request
+ */
+ public static final String POSTS_GROUPBY_REQUEST = "posts_groupby_request";
+
+ /**
+ * Original hook name: posts_join
+ */
+ public static final String POSTS_JOIN = "posts_join";
+
+ /**
+ * Original hook name: posts_join_paged
+ */
+ public static final String POSTS_JOIN_PAGED = "posts_join_paged";
+
+ /**
+ * Original hook name: posts_join_request
+ */
+ public static final String POSTS_JOIN_REQUEST = "posts_join_request";
+
+ /**
+ * Original hook name: posts_orderby
+ */
+ public static final String POSTS_ORDERBY = "posts_orderby";
+
+ /**
+ * Original hook name: posts_orderby_request
+ */
+ public static final String POSTS_ORDERBY_REQUEST = "posts_orderby_request";
+
+ /**
+ * Original hook name: posts_pre_query
+ */
+ public static final String POSTS_PRE_QUERY = "posts_pre_query";
+
+ /**
+ * Original hook name: posts_request
+ */
+ public static final String POSTS_REQUEST = "posts_request";
+
+ /**
+ * Original hook name: posts_request_ids
+ */
+ public static final String POSTS_REQUEST_IDS = "posts_request_ids";
+
+ /**
+ * Original hook name: posts_results
+ */
+ public static final String POSTS_RESULTS = "posts_results";
+
+ /**
+ * Original hook name: posts_search
+ */
+ public static final String POSTS_SEARCH = "posts_search";
+
+ /**
+ * Original hook name: posts_search_orderby
+ */
+ public static final String POSTS_SEARCH_ORDERBY = "posts_search_orderby";
+
+ /**
+ * Original hook name: posts_selection
+ */
+ public static final String POSTS_SELECTION = "posts_selection";
+
+ /**
+ * Original hook name: posts_where
+ */
+ public static final String POSTS_WHERE = "posts_where";
+
+ /**
+ * Original hook name: posts_where_paged
+ */
+ public static final String POSTS_WHERE_PAGED = "posts_where_paged";
+
+ /**
+ * Original hook name: posts_where_request
+ */
+ public static final String POSTS_WHERE_REQUEST = "posts_where_request";
+
+ /**
+ * Original hook name: pre-flash-upload-ui
+ */
+ public static final String PRE_FLASH_UPLOAD_UI = "pre-flash-upload-ui";
+
+ /**
+ * Original hook name: pre-html-upload-ui
+ */
+ public static final String PRE_HTML_UPLOAD_UI = "pre-html-upload-ui";
+
+ /**
+ * Original hook name: pre-plupload-upload-ui
+ */
+ public static final String PRE_PLUPLOAD_UPLOAD_UI = "pre-plupload-upload-ui";
+
+ /**
+ * Original hook name: pre-upload-ui
+ */
+ public static final String PRE_UPLOAD_UI = "pre-upload-ui";
+
+ /**
+ * Original hook name: pre_add_site_option_{$key}
+ */
+ public static final String PRE_ADD_SITE_OPTION_KEY = "pre_add_site_option_{$key}";
+
+ /**
+ * Original hook name: pre_add_site_option_{$option}
+ */
+ public static final String PRE_ADD_SITE_OPTION_OPTION = "pre_add_site_option_{$option}";
+
+ /**
+ * Original hook name: pre_attachment_url_to_postid
+ */
+ public static final String PRE_ATTACHMENT_URL_TO_POSTID = "pre_attachment_url_to_postid";
+
+ /**
+ * Original hook name: pre_auto_update
+ */
+ public static final String PRE_AUTO_UPDATE = "pre_auto_update";
+
+ /**
+ * Original hook name: pre_cache_alloptions
+ */
+ public static final String PRE_CACHE_ALLOPTIONS = "pre_cache_alloptions";
+
+ /**
+ * Original hook name: pre_category_description
+ */
+ public static final String PRE_CATEGORY_DESCRIPTION = "pre_category_description";
+
+ /**
+ * Original hook name: pre_category_name
+ */
+ public static final String PRE_CATEGORY_NAME = "pre_category_name";
+
+ /**
+ * Original hook name: pre_category_nicename
+ */
+ public static final String PRE_CATEGORY_NICENAME = "pre_category_nicename";
+
+ /**
+ * Original hook name: pre_clear_scheduled_hook
+ */
+ public static final String PRE_CLEAR_SCHEDULED_HOOK = "pre_clear_scheduled_hook";
+
+ /**
+ * Original hook name: pre_comment_approved
+ */
+ public static final String PRE_COMMENT_APPROVED = "pre_comment_approved";
+
+ /**
+ * Original hook name: pre_comment_author_email
+ */
+ public static final String PRE_COMMENT_AUTHOR_EMAIL = "pre_comment_author_email";
+
+ /**
+ * Original hook name: pre_comment_author_name
+ */
+ public static final String PRE_COMMENT_AUTHOR_NAME = "pre_comment_author_name";
+
+ /**
+ * Original hook name: pre_comment_author_url
+ */
+ public static final String PRE_COMMENT_AUTHOR_URL = "pre_comment_author_url";
+
+ /**
+ * Original hook name: pre_comment_content
+ */
+ public static final String PRE_COMMENT_CONTENT = "pre_comment_content";
+
+ /**
+ * Original hook name: pre_comment_on_post
+ */
+ public static final String PRE_COMMENT_ON_POST = "pre_comment_on_post";
+
+ /**
+ * Original hook name: pre_comment_user_agent
+ */
+ public static final String PRE_COMMENT_USER_AGENT = "pre_comment_user_agent";
+
+ /**
+ * Original hook name: pre_comment_user_domain
+ */
+ public static final String PRE_COMMENT_USER_DOMAIN = "pre_comment_user_domain";
+
+ /**
+ * Original hook name: pre_comment_user_ip
+ */
+ public static final String PRE_COMMENT_USER_IP = "pre_comment_user_ip";
+
+ /**
+ * Original hook name: pre_count_many_users_posts
+ */
+ public static final String PRE_COUNT_MANY_USERS_POSTS = "pre_count_many_users_posts";
+
+ /**
+ * Original hook name: pre_count_users
+ */
+ public static final String PRE_COUNT_USERS = "pre_count_users";
+
+ /**
+ * Original hook name: pre_current_active_plugins
+ */
+ public static final String PRE_CURRENT_ACTIVE_PLUGINS = "pre_current_active_plugins";
+
+ /**
+ * Original hook name: pre_delete_attachment
+ */
+ public static final String PRE_DELETE_ATTACHMENT = "pre_delete_attachment";
+
+ /**
+ * Original hook name: pre_delete_post
+ */
+ public static final String PRE_DELETE_POST = "pre_delete_post";
+
+ /**
+ * Original hook name: pre_delete_site_option_{$option}
+ */
+ public static final String PRE_DELETE_SITE_OPTION_OPTION = "pre_delete_site_option_{$option}";
+
+ /**
+ * Original hook name: pre_delete_term
+ */
+ public static final String PRE_DELETE_TERM = "pre_delete_term";
+
+ /**
+ * Original hook name: pre_determine_locale
+ */
+ public static final String PRE_DETERMINE_LOCALE = "pre_determine_locale";
+
+ /**
+ * Original hook name: pre_do_shortcode_tag
+ */
+ public static final String PRE_DO_SHORTCODE_TAG = "pre_do_shortcode_tag";
+
+ /**
+ * Original hook name: pre_ent2ncr
+ */
+ public static final String PRE_ENT2NCR = "pre_ent2ncr";
+
+ /**
+ * Original hook name: pre_get_available_post_mime_types
+ */
+ public static final String PRE_GET_AVAILABLE_POST_MIME_TYPES = "pre_get_available_post_mime_types";
+
+ /**
+ * Original hook name: pre_get_avatar
+ */
+ public static final String PRE_GET_AVATAR = "pre_get_avatar";
+
+ /**
+ * Original hook name: pre_get_avatar_data
+ */
+ public static final String PRE_GET_AVATAR_DATA = "pre_get_avatar_data";
+
+ /**
+ * Original hook name: pre_get_block_file_template
+ */
+ public static final String PRE_GET_BLOCK_FILE_TEMPLATE = "pre_get_block_file_template";
+
+ /**
+ * Original hook name: pre_get_block_template
+ */
+ public static final String PRE_GET_BLOCK_TEMPLATE = "pre_get_block_template";
+
+ /**
+ * Original hook name: pre_get_block_templates
+ */
+ public static final String PRE_GET_BLOCK_TEMPLATES = "pre_get_block_templates";
+
+ /**
+ * Original hook name: pre_get_blogs_of_user
+ */
+ public static final String PRE_GET_BLOGS_OF_USER = "pre_get_blogs_of_user";
+
+ /**
+ * Original hook name: pre_get_col_charset
+ */
+ public static final String PRE_GET_COL_CHARSET = "pre_get_col_charset";
+
+ /**
+ * Original hook name: pre_get_comments
+ */
+ public static final String PRE_GET_COMMENTS = "pre_get_comments";
+
+ /**
+ * Original hook name: pre_get_document_title
+ */
+ public static final String PRE_GET_DOCUMENT_TITLE = "pre_get_document_title";
+
+ /**
+ * Original hook name: pre_get_language_files_from_path
+ */
+ public static final String PRE_GET_LANGUAGE_FILES_FROM_PATH = "pre_get_language_files_from_path";
+
+ /**
+ * Original hook name: pre_get_lastpostmodified
+ */
+ public static final String PRE_GET_LASTPOSTMODIFIED = "pre_get_lastpostmodified";
+
+ /**
+ * Original hook name: pre_get_main_site_id
+ */
+ public static final String PRE_GET_MAIN_SITE_ID = "pre_get_main_site_id";
+
+ /**
+ * Original hook name: pre_get_network_by_path
+ */
+ public static final String PRE_GET_NETWORK_BY_PATH = "pre_get_network_by_path";
+
+ /**
+ * Original hook name: pre_get_networks
+ */
+ public static final String PRE_GET_NETWORKS = "pre_get_networks";
+
+ /**
+ * Original hook name: pre_get_posts
+ */
+ public static final String PRE_GET_POSTS = "pre_get_posts";
+
+ /**
+ * Original hook name: pre_get_ready_cron_jobs
+ */
+ public static final String PRE_GET_READY_CRON_JOBS = "pre_get_ready_cron_jobs";
+
+ /**
+ * Original hook name: pre_get_scheduled_event
+ */
+ public static final String PRE_GET_SCHEDULED_EVENT = "pre_get_scheduled_event";
+
+ /**
+ * Original hook name: pre_get_search_form
+ */
+ public static final String PRE_GET_SEARCH_FORM = "pre_get_search_form";
+
+ /**
+ * Original hook name: pre_get_shortlink
+ */
+ public static final String PRE_GET_SHORTLINK = "pre_get_shortlink";
+
+ /**
+ * Original hook name: pre_get_site_by_path
+ */
+ public static final String PRE_GET_SITE_BY_PATH = "pre_get_site_by_path";
+
+ /**
+ * Original hook name: pre_get_sites
+ */
+ public static final String PRE_GET_SITES = "pre_get_sites";
+
+ /**
+ * Original hook name: pre_get_space_used
+ */
+ public static final String PRE_GET_SPACE_USED = "pre_get_space_used";
+
+ /**
+ * Original hook name: pre_get_table_charset
+ */
+ public static final String PRE_GET_TABLE_CHARSET = "pre_get_table_charset";
+
+ /**
+ * Original hook name: pre_get_terms
+ */
+ public static final String PRE_GET_TERMS = "pre_get_terms";
+
+ /**
+ * Original hook name: pre_get_users
+ */
+ public static final String PRE_GET_USERS = "pre_get_users";
+
+ /**
+ * Original hook name: pre_handle_404
+ */
+ public static final String PRE_HANDLE_404 = "pre_handle_404";
+
+ /**
+ * Original hook name: pre_http_request
+ */
+ public static final String PRE_HTTP_REQUEST = "pre_http_request";
+
+ /**
+ * Original hook name: pre_http_send_through_proxy
+ */
+ public static final String PRE_HTTP_SEND_THROUGH_PROXY = "pre_http_send_through_proxy";
+
+ /**
+ * Original hook name: pre_insert_term
+ */
+ public static final String PRE_INSERT_TERM = "pre_insert_term";
+
+ /**
+ * Original hook name: pre_kses
+ */
+ public static final String PRE_KSES = "pre_kses";
+
+ /**
+ * Original hook name: pre_link_description
+ */
+ public static final String PRE_LINK_DESCRIPTION = "pre_link_description";
+
+ /**
+ * Original hook name: pre_link_image
+ */
+ public static final String PRE_LINK_IMAGE = "pre_link_image";
+
+ /**
+ * Original hook name: pre_link_name
+ */
+ public static final String PRE_LINK_NAME = "pre_link_name";
+
+ /**
+ * Original hook name: pre_link_notes
+ */
+ public static final String PRE_LINK_NOTES = "pre_link_notes";
+
+ /**
+ * Original hook name: pre_link_rel
+ */
+ public static final String PRE_LINK_REL = "pre_link_rel";
+
+ /**
+ * Original hook name: pre_link_rss
+ */
+ public static final String PRE_LINK_RSS = "pre_link_rss";
+
+ /**
+ * Original hook name: pre_link_target
+ */
+ public static final String PRE_LINK_TARGET = "pre_link_target";
+
+ /**
+ * Original hook name: pre_link_url
+ */
+ public static final String PRE_LINK_URL = "pre_link_url";
+
+ /**
+ * Original hook name: pre_load_script_translations
+ */
+ public static final String PRE_LOAD_SCRIPT_TRANSLATIONS = "pre_load_script_translations";
+
+ /**
+ * Original hook name: pre_load_textdomain
+ */
+ public static final String PRE_LOAD_TEXTDOMAIN = "pre_load_textdomain";
+
+ /**
+ * Original hook name: pre_months_dropdown_query
+ */
+ public static final String PRE_MONTHS_DROPDOWN_QUERY = "pre_months_dropdown_query";
+
+ /**
+ * Original hook name: pre_move_uploaded_file
+ */
+ public static final String PRE_MOVE_UPLOADED_FILE = "pre_move_uploaded_file";
+
+ /**
+ * Original hook name: pre_network_site_new_created_user
+ */
+ public static final String PRE_NETWORK_SITE_NEW_CREATED_USER = "pre_network_site_new_created_user";
+
+ /**
+ * Original hook name: pre_oembed_result
+ */
+ public static final String PRE_OEMBED_RESULT = "pre_oembed_result";
+
+ /**
+ * Original hook name: pre_option
+ */
+ public static final String PRE_OPTION = "pre_option";
+
+ /**
+ * Original hook name: pre_option_enable_xmlrpc
+ */
+ public static final String PRE_OPTION_ENABLE_XMLRPC = "pre_option_enable_xmlrpc";
+
+ /**
+ * Original hook name: pre_option_{$option->option_name}
+ */
+ public static final String PRE_OPTION_OPTION_OPTION_NAME = "pre_option_{$option->option_name}";
+
+ /**
+ * Original hook name: pre_option_{$option}
+ */
+ public static final String PRE_OPTION_OPTION = "pre_option_{$option}";
+
+ /**
+ * Original hook name: pre_option_{$setting}
+ */
+ public static final String PRE_OPTION_SETTING = "pre_option_{$setting}";
+
+ /**
+ * Original hook name: pre_ping
+ */
+ public static final String PRE_PING = "pre_ping";
+
+ /**
+ * Original hook name: pre_post_insert
+ */
+ public static final String PRE_POST_INSERT = "pre_post_insert";
+
+ /**
+ * Original hook name: pre_post_link
+ */
+ public static final String PRE_POST_LINK = "pre_post_link";
+
+ /**
+ * Original hook name: pre_post_update
+ */
+ public static final String PRE_POST_UPDATE = "pre_post_update";
+
+ /**
+ * Original hook name: pre_post_{$field}
+ */
+ public static final String PRE_POST_FIELD = "pre_post_{$field}";
+
+ /**
+ * Original hook name: pre_prepare_themes_for_js
+ */
+ public static final String PRE_PREPARE_THEMES_FOR_JS = "pre_prepare_themes_for_js";
+
+ /**
+ * Original hook name: pre_recurse_dirsize
+ */
+ public static final String PRE_RECURSE_DIRSIZE = "pre_recurse_dirsize";
+
+ /**
+ * Original hook name: pre_redirect_guess_404_permalink
+ */
+ public static final String PRE_REDIRECT_GUESS_404_PERMALINK = "pre_redirect_guess_404_permalink";
+
+ /**
+ * Original hook name: pre_remote_source
+ */
+ public static final String PRE_REMOTE_SOURCE = "pre_remote_source";
+
+ /**
+ * Original hook name: pre_render_block
+ */
+ public static final String PRE_RENDER_BLOCK = "pre_render_block";
+
+ /**
+ * Original hook name: pre_reschedule_event
+ */
+ public static final String PRE_RESCHEDULE_EVENT = "pre_reschedule_event";
+
+ /**
+ * Original hook name: pre_schedule_event
+ */
+ public static final String PRE_SCHEDULE_EVENT = "pre_schedule_event";
+
+ /**
+ * Original hook name: pre_set_site_transient_{$transient}
+ */
+ public static final String PRE_SET_SITE_TRANSIENT_TRANSIENT = "pre_set_site_transient_{$transient}";
+
+ /**
+ * Original hook name: pre_set_theme_mod_{$name}
+ */
+ public static final String PRE_SET_THEME_MOD_NAME = "pre_set_theme_mod_{$name}";
+
+ /**
+ * Original hook name: pre_set_transient_{$transient}
+ */
+ public static final String PRE_SET_TRANSIENT_TRANSIENT = "pre_set_transient_{$transient}";
+
+ /**
+ * Original hook name: pre_site_option
+ */
+ public static final String PRE_SITE_OPTION = "pre_site_option";
+
+ /**
+ * Original hook name: pre_site_option_{$key}
+ */
+ public static final String PRE_SITE_OPTION_KEY = "pre_site_option_{$key}";
+
+ /**
+ * Original hook name: pre_site_option_{$option}
+ */
+ public static final String PRE_SITE_OPTION_OPTION = "pre_site_option_{$option}";
+
+ /**
+ * Original hook name: pre_site_transient_{$transient}
+ */
+ public static final String PRE_SITE_TRANSIENT_TRANSIENT = "pre_site_transient_{$transient}";
+
+ /**
+ * Original hook name: pre_term_link
+ */
+ public static final String PRE_TERM_LINK = "pre_term_link";
+
+ /**
+ * Original hook name: pre_term_{$field}
+ */
+ public static final String PRE_TERM_FIELD = "pre_term_{$field}";
+
+ /**
+ * Original hook name: pre_trackback_post
+ */
+ public static final String PRE_TRACKBACK_POST = "pre_trackback_post";
+
+ /**
+ * Original hook name: pre_transient_{$transient}
+ */
+ public static final String PRE_TRANSIENT_TRANSIENT = "pre_transient_{$transient}";
+
+ /**
+ * Original hook name: pre_trash_post
+ */
+ public static final String PRE_TRASH_POST = "pre_trash_post";
+
+ /**
+ * Original hook name: pre_uninstall_plugin
+ */
+ public static final String PRE_UNINSTALL_PLUGIN = "pre_uninstall_plugin";
+
+ /**
+ * Original hook name: pre_unschedule_event
+ */
+ public static final String PRE_UNSCHEDULE_EVENT = "pre_unschedule_event";
+
+ /**
+ * Original hook name: pre_unschedule_hook
+ */
+ public static final String PRE_UNSCHEDULE_HOOK = "pre_unschedule_hook";
+
+ /**
+ * Original hook name: pre_untrash_post
+ */
+ public static final String PRE_UNTRASH_POST = "pre_untrash_post";
+
+ /**
+ * Original hook name: pre_unzip_file
+ */
+ public static final String PRE_UNZIP_FILE = "pre_unzip_file";
+
+ /**
+ * Original hook name: pre_update_option
+ */
+ public static final String PRE_UPDATE_OPTION = "pre_update_option";
+
+ /**
+ * Original hook name: pre_update_option_{$option_name}
+ */
+ public static final String PRE_UPDATE_OPTION_OPTION_NAME = "pre_update_option_{$option_name}";
+
+ /**
+ * Original hook name: pre_update_option_{$option}
+ */
+ public static final String PRE_UPDATE_OPTION_OPTION = "pre_update_option_{$option}";
+
+ /**
+ * Original hook name: pre_update_site_option_{$key}
+ */
+ public static final String PRE_UPDATE_SITE_OPTION_KEY = "pre_update_site_option_{$key}";
+
+ /**
+ * Original hook name: pre_update_site_option_{$option}
+ */
+ public static final String PRE_UPDATE_SITE_OPTION_OPTION = "pre_update_site_option_{$option}";
+
+ /**
+ * Original hook name: pre_upload_error
+ */
+ public static final String PRE_UPLOAD_ERROR = "pre_upload_error";
+
+ /**
+ * Original hook name: pre_user_description
+ */
+ public static final String PRE_USER_DESCRIPTION = "pre_user_description";
+
+ /**
+ * Original hook name: pre_user_display_name
+ */
+ public static final String PRE_USER_DISPLAY_NAME = "pre_user_display_name";
+
+ /**
+ * Original hook name: pre_user_email
+ */
+ public static final String PRE_USER_EMAIL = "pre_user_email";
+
+ /**
+ * Original hook name: pre_user_first_name
+ */
+ public static final String PRE_USER_FIRST_NAME = "pre_user_first_name";
+
+ /**
+ * Original hook name: pre_user_id
+ */
+ public static final String PRE_USER_ID = "pre_user_id";
+
+ /**
+ * Original hook name: pre_user_last_name
+ */
+ public static final String PRE_USER_LAST_NAME = "pre_user_last_name";
+
+ /**
+ * Original hook name: pre_user_login
+ */
+ public static final String PRE_USER_LOGIN = "pre_user_login";
+
+ /**
+ * Original hook name: pre_user_nicename
+ */
+ public static final String PRE_USER_NICENAME = "pre_user_nicename";
+
+ /**
+ * Original hook name: pre_user_nickname
+ */
+ public static final String PRE_USER_NICKNAME = "pre_user_nickname";
+
+ /**
+ * Original hook name: pre_user_query
+ */
+ public static final String PRE_USER_QUERY = "pre_user_query";
+
+ /**
+ * Original hook name: pre_user_search
+ */
+ public static final String PRE_USER_SEARCH = "pre_user_search";
+
+ /**
+ * Original hook name: pre_user_url
+ */
+ public static final String PRE_USER_URL = "pre_user_url";
+
+ /**
+ * Original hook name: pre_user_{$field}
+ */
+ public static final String PRE_USER_FIELD = "pre_user_{$field}";
+
+ /**
+ * Original hook name: pre_wp_filesize
+ */
+ public static final String PRE_WP_FILESIZE = "pre_wp_filesize";
+
+ /**
+ * Original hook name: pre_wp_get_https_detection_errors
+ */
+ public static final String PRE_WP_GET_HTTPS_DETECTION_ERRORS = "pre_wp_get_https_detection_errors";
+
+ /**
+ * Original hook name: pre_wp_get_loading_optimization_attributes
+ */
+ public static final String PRE_WP_GET_LOADING_OPTIMIZATION_ATTRIBUTES = "pre_wp_get_loading_optimization_attributes";
+
+ /**
+ * Original hook name: pre_wp_is_site_initialized
+ */
+ public static final String PRE_WP_IS_SITE_INITIALIZED = "pre_wp_is_site_initialized";
+
+ /**
+ * Original hook name: pre_wp_list_authors_post_counts_query
+ */
+ public static final String PRE_WP_LIST_AUTHORS_POST_COUNTS_QUERY = "pre_wp_list_authors_post_counts_query";
+
+ /**
+ * Original hook name: pre_wp_load_alloptions
+ */
+ public static final String PRE_WP_LOAD_ALLOPTIONS = "pre_wp_load_alloptions";
+
+ /**
+ * Original hook name: pre_wp_mail
+ */
+ public static final String PRE_WP_MAIL = "pre_wp_mail";
+
+ /**
+ * Original hook name: pre_wp_nav_menu
+ */
+ public static final String PRE_WP_NAV_MENU = "pre_wp_nav_menu";
+
+ /**
+ * Original hook name: pre_wp_setup_nav_menu_item
+ */
+ public static final String PRE_WP_SETUP_NAV_MENU_ITEM = "pre_wp_setup_nav_menu_item";
+
+ /**
+ * Original hook name: pre_wp_unique_filename_file_list
+ */
+ public static final String PRE_WP_UNIQUE_FILENAME_FILE_LIST = "pre_wp_unique_filename_file_list";
+
+ /**
+ * Original hook name: pre_wp_unique_post_slug
+ */
+ public static final String PRE_WP_UNIQUE_POST_SLUG = "pre_wp_unique_post_slug";
+
+ /**
+ * Original hook name: pre_wp_update_comment_count_now
+ */
+ public static final String PRE_WP_UPDATE_COMMENT_COUNT_NOW = "pre_wp_update_comment_count_now";
+
+ /**
+ * Original hook name: pre_wp_update_https_detection_errors
+ */
+ public static final String PRE_WP_UPDATE_HTTPS_DETECTION_ERRORS = "pre_wp_update_https_detection_errors";
+
+ /**
+ * Original hook name: pre_{$field}
+ */
+ public static final String PRE_FIELD = "pre_{$field}";
+
+ /**
+ * Original hook name: pre_{$taxonomy}_{$field}
+ */
+ public static final String PRE_TAXONOMY_FIELD = "pre_{$taxonomy}_{$field}";
+
+ /**
+ * Original hook name: prepend_attachment
+ */
+ public static final String PREPEND_ATTACHMENT = "prepend_attachment";
+
+ /**
+ * Original hook name: preprocess_comment
+ */
+ public static final String PREPROCESS_COMMENT = "preprocess_comment";
+
+ /**
+ * Original hook name: preprocess_signup_form
+ */
+ public static final String PREPROCESS_SIGNUP_FORM = "preprocess_signup_form";
+
+ /**
+ * Original hook name: press_this_data
+ */
+ public static final String PRESS_THIS_DATA = "press_this_data";
+
+ /**
+ * Original hook name: press_this_redirect_in_parent
+ */
+ public static final String PRESS_THIS_REDIRECT_IN_PARENT = "press_this_redirect_in_parent";
+
+ /**
+ * Original hook name: press_this_save_post
+ */
+ public static final String PRESS_THIS_SAVE_POST = "press_this_save_post";
+
+ /**
+ * Original hook name: press_this_save_redirect
+ */
+ public static final String PRESS_THIS_SAVE_REDIRECT = "press_this_save_redirect";
+
+ /**
+ * Original hook name: press_this_suggested_html
+ */
+ public static final String PRESS_THIS_SUGGESTED_HTML = "press_this_suggested_html";
+
+ /**
+ * Original hook name: preview_page_link
+ */
+ public static final String PREVIEW_PAGE_LINK = "preview_page_link";
+
+ /**
+ * Original hook name: preview_post_link
+ */
+ public static final String PREVIEW_POST_LINK = "preview_post_link";
+
+ /**
+ * Original hook name: previous_comments_link_attributes
+ */
+ public static final String PREVIOUS_COMMENTS_LINK_ATTRIBUTES = "previous_comments_link_attributes";
+
+ /**
+ * Original hook name: previous_posts_link_attributes
+ */
+ public static final String PREVIOUS_POSTS_LINK_ATTRIBUTES = "previous_posts_link_attributes";
+
+ /**
+ * Original hook name: print_admin_styles
+ */
+ public static final String PRINT_ADMIN_STYLES = "print_admin_styles";
+
+ /**
+ * Original hook name: print_default_editor_scripts
+ */
+ public static final String PRINT_DEFAULT_EDITOR_SCRIPTS = "print_default_editor_scripts";
+
+ /**
+ * Original hook name: print_footer_scripts
+ */
+ public static final String PRINT_FOOTER_SCRIPTS = "print_footer_scripts";
+
+ /**
+ * Original hook name: print_head_scripts
+ */
+ public static final String PRINT_HEAD_SCRIPTS = "print_head_scripts";
+
+ /**
+ * Original hook name: print_late_styles
+ */
+ public static final String PRINT_LATE_STYLES = "print_late_styles";
+
+ /**
+ * Original hook name: print_media_templates
+ */
+ public static final String PRINT_MEDIA_TEMPLATES = "print_media_templates";
+
+ /**
+ * Original hook name: print_scripts_array
+ */
+ public static final String PRINT_SCRIPTS_ARRAY = "print_scripts_array";
+
+ /**
+ * Original hook name: print_styles_array
+ */
+ public static final String PRINT_STYLES_ARRAY = "print_styles_array";
+
+ /**
+ * Original hook name: privacy_on_link_text
+ */
+ public static final String PRIVACY_ON_LINK_TEXT = "privacy_on_link_text";
+
+ /**
+ * Original hook name: privacy_on_link_title
+ */
+ public static final String PRIVACY_ON_LINK_TITLE = "privacy_on_link_title";
+
+ /**
+ * Original hook name: privacy_policy_url
+ */
+ public static final String PRIVACY_POLICY_URL = "privacy_policy_url";
+
+ /**
+ * Original hook name: private_title_format
+ */
+ public static final String PRIVATE_TITLE_FORMAT = "private_title_format";
+
+ /**
+ * Original hook name: private_to_published
+ */
+ public static final String PRIVATE_TO_PUBLISHED = "private_to_published";
+
+ /**
+ * Original hook name: process_text_diff_html
+ */
+ public static final String PROCESS_TEXT_DIFF_HTML = "process_text_diff_html";
+
+ /**
+ * Original hook name: profile_personal_options
+ */
+ public static final String PROFILE_PERSONAL_OPTIONS = "profile_personal_options";
+
+ /**
+ * Original hook name: profile_update
+ */
+ public static final String PROFILE_UPDATE = "profile_update";
+
+ /**
+ * Original hook name: protected_title_format
+ */
+ public static final String PROTECTED_TITLE_FORMAT = "protected_title_format";
+
+ /**
+ * Original hook name: pub_priv_sql_capability
+ */
+ public static final String PUB_PRIV_SQL_CAPABILITY = "pub_priv_sql_capability";
+
+ /**
+ * Original hook name: publish_page
+ */
+ public static final String PUBLISH_PAGE = "publish_page";
+
+ /**
+ * Original hook name: publish_phone
+ */
+ public static final String PUBLISH_PHONE = "publish_phone";
+
+ /**
+ * Original hook name: publish_post
+ */
+ public static final String PUBLISH_POST = "publish_post";
+
+ /**
+ * Original hook name: query
+ */
+ public static final String QUERY = "query";
+
+ /**
+ * Original hook name: query_loop_block_query_vars
+ */
+ public static final String QUERY_LOOP_BLOCK_QUERY_VARS = "query_loop_block_query_vars";
+
+ /**
+ * Original hook name: query_string
+ */
+ public static final String QUERY_STRING = "query_string";
+
+ /**
+ * Original hook name: query_vars
+ */
+ public static final String QUERY_VARS = "query_vars";
+
+ /**
+ * Original hook name: quick_edit_custom_box
+ */
+ public static final String QUICK_EDIT_CUSTOM_BOX = "quick_edit_custom_box";
+
+ /**
+ * Original hook name: quick_edit_dropdown_authors_args
+ */
+ public static final String QUICK_EDIT_DROPDOWN_AUTHORS_ARGS = "quick_edit_dropdown_authors_args";
+
+ /**
+ * Original hook name: quick_edit_dropdown_pages_args
+ */
+ public static final String QUICK_EDIT_DROPDOWN_PAGES_ARGS = "quick_edit_dropdown_pages_args";
+
+ /**
+ * Original hook name: quick_edit_enabled_for_post_type
+ */
+ public static final String QUICK_EDIT_ENABLED_FOR_POST_TYPE = "quick_edit_enabled_for_post_type";
+
+ /**
+ * Original hook name: quick_edit_enabled_for_taxonomy
+ */
+ public static final String QUICK_EDIT_ENABLED_FOR_TAXONOMY = "quick_edit_enabled_for_taxonomy";
+
+ /**
+ * Original hook name: quick_edit_show_taxonomy
+ */
+ public static final String QUICK_EDIT_SHOW_TAXONOMY = "quick_edit_show_taxonomy";
+
+ /**
+ * Original hook name: quick_edit_statuses
+ */
+ public static final String QUICK_EDIT_STATUSES = "quick_edit_statuses";
+
+ /**
+ * Original hook name: quicktags_settings
+ */
+ public static final String QUICKTAGS_SETTINGS = "quicktags_settings";
+
+ /**
+ * Original hook name: random_password
+ */
+ public static final String RANDOM_PASSWORD = "random_password";
+
+ /**
+ * Original hook name: rdf_header
+ */
+ public static final String RDF_HEADER = "rdf_header";
+
+ /**
+ * Original hook name: rdf_item
+ */
+ public static final String RDF_ITEM = "rdf_item";
+
+ /**
+ * Original hook name: rdf_ns
+ */
+ public static final String RDF_NS = "rdf_ns";
+
+ /**
+ * Original hook name: recovery_email_debug_info
+ */
+ public static final String RECOVERY_EMAIL_DEBUG_INFO = "recovery_email_debug_info";
+
+ /**
+ * Original hook name: recovery_email_support_info
+ */
+ public static final String RECOVERY_EMAIL_SUPPORT_INFO = "recovery_email_support_info";
+
+ /**
+ * Original hook name: recovery_mode_begin_url
+ */
+ public static final String RECOVERY_MODE_BEGIN_URL = "recovery_mode_begin_url";
+
+ /**
+ * Original hook name: recovery_mode_cookie_length
+ */
+ public static final String RECOVERY_MODE_COOKIE_LENGTH = "recovery_mode_cookie_length";
+
+ /**
+ * Original hook name: recovery_mode_email
+ */
+ public static final String RECOVERY_MODE_EMAIL = "recovery_mode_email";
+
+ /**
+ * Original hook name: recovery_mode_email_link_ttl
+ */
+ public static final String RECOVERY_MODE_EMAIL_LINK_TTL = "recovery_mode_email_link_ttl";
+
+ /**
+ * Original hook name: recovery_mode_email_rate_limit
+ */
+ public static final String RECOVERY_MODE_EMAIL_RATE_LIMIT = "recovery_mode_email_rate_limit";
+
+ /**
+ * Original hook name: redirect_canonical
+ */
+ public static final String REDIRECT_CANONICAL = "redirect_canonical";
+
+ /**
+ * Original hook name: redirect_network_admin_request
+ */
+ public static final String REDIRECT_NETWORK_ADMIN_REQUEST = "redirect_network_admin_request";
+
+ /**
+ * Original hook name: redirect_page_location
+ */
+ public static final String REDIRECT_PAGE_LOCATION = "redirect_page_location";
+
+ /**
+ * Original hook name: redirect_post_location
+ */
+ public static final String REDIRECT_POST_LOCATION = "redirect_post_location";
+
+ /**
+ * Original hook name: redirect_term_location
+ */
+ public static final String REDIRECT_TERM_LOCATION = "redirect_term_location";
+
+ /**
+ * Original hook name: redirect_user_admin_request
+ */
+ public static final String REDIRECT_USER_ADMIN_REQUEST = "redirect_user_admin_request";
+
+ /**
+ * Original hook name: refresh_blog_details
+ */
+ public static final String REFRESH_BLOG_DETAILS = "refresh_blog_details";
+
+ /**
+ * Original hook name: register
+ */
+ public static final String REGISTER = "register";
+
+ /**
+ * Original hook name: register_block_type_args
+ */
+ public static final String REGISTER_BLOCK_TYPE_ARGS = "register_block_type_args";
+
+ /**
+ * Original hook name: register_form
+ */
+ public static final String REGISTER_FORM = "register_form";
+
+ /**
+ * Original hook name: register_meta_args
+ */
+ public static final String REGISTER_META_ARGS = "register_meta_args";
+
+ /**
+ * Original hook name: register_new_user
+ */
+ public static final String REGISTER_NEW_USER = "register_new_user";
+
+ /**
+ * Original hook name: register_post
+ */
+ public static final String REGISTER_POST = "register_post";
+
+ /**
+ * Original hook name: register_post_type_args
+ */
+ public static final String REGISTER_POST_TYPE_ARGS = "register_post_type_args";
+
+ /**
+ * Original hook name: register_setting
+ */
+ public static final String REGISTER_SETTING = "register_setting";
+
+ /**
+ * Original hook name: register_setting_args
+ */
+ public static final String REGISTER_SETTING_ARGS = "register_setting_args";
+
+ /**
+ * Original hook name: register_sidebar
+ */
+ public static final String REGISTER_SIDEBAR = "register_sidebar";
+
+ /**
+ * Original hook name: register_sidebar_defaults
+ */
+ public static final String REGISTER_SIDEBAR_DEFAULTS = "register_sidebar_defaults";
+
+ /**
+ * Original hook name: register_taxonomy_args
+ */
+ public static final String REGISTER_TAXONOMY_ARGS = "register_taxonomy_args";
+
+ /**
+ * Original hook name: register_url
+ */
+ public static final String REGISTER_URL = "register_url";
+
+ /**
+ * Original hook name: register_{$post_type}_post_type_args
+ */
+ public static final String REGISTER_POST_TYPE_POST_TYPE_ARGS = "register_{$post_type}_post_type_args";
+
+ /**
+ * Original hook name: register_{$taxonomy}_taxonomy_args
+ */
+ public static final String REGISTER_TAXONOMY_TAXONOMY_ARGS = "register_{$taxonomy}_taxonomy_args";
+
+ /**
+ * Original hook name: registered_post_type
+ */
+ public static final String REGISTERED_POST_TYPE = "registered_post_type";
+
+ /**
+ * Original hook name: registered_post_type_{$post_type}
+ */
+ public static final String REGISTERED_POST_TYPE_POST_TYPE = "registered_post_type_{$post_type}";
+
+ /**
+ * Original hook name: registered_taxonomy
+ */
+ public static final String REGISTERED_TAXONOMY = "registered_taxonomy";
+
+ /**
+ * Original hook name: registered_taxonomy_for_object_type
+ */
+ public static final String REGISTERED_TAXONOMY_FOR_OBJECT_TYPE = "registered_taxonomy_for_object_type";
+
+ /**
+ * Original hook name: registered_taxonomy_{$taxonomy}
+ */
+ public static final String REGISTERED_TAXONOMY_TAXONOMY = "registered_taxonomy_{$taxonomy}";
+
+ /**
+ * Original hook name: registration_errors
+ */
+ public static final String REGISTRATION_ERRORS = "registration_errors";
+
+ /**
+ * Original hook name: registration_redirect
+ */
+ public static final String REGISTRATION_REDIRECT = "registration_redirect";
+
+ /**
+ * Original hook name: removable_query_args
+ */
+ public static final String REMOVABLE_QUERY_ARGS = "removable_query_args";
+
+ /**
+ * Original hook name: remove_user_from_blog
+ */
+ public static final String REMOVE_USER_FROM_BLOG = "remove_user_from_blog";
+
+ /**
+ * Original hook name: remove_user_role
+ */
+ public static final String REMOVE_USER_ROLE = "remove_user_role";
+
+ /**
+ * Original hook name: render_block
+ */
+ public static final String RENDER_BLOCK = "render_block";
+
+ /**
+ * Original hook name: render_block_context
+ */
+ public static final String RENDER_BLOCK_CONTEXT = "render_block_context";
+
+ /**
+ * Original hook name: render_block_core_navigation_link_allowed_post_status
+ */
+ public static final String RENDER_BLOCK_CORE_NAVIGATION_LINK_ALLOWED_POST_STATUS = "render_block_core_navigation_link_allowed_post_status";
+
+ /**
+ * Original hook name: render_block_core_template_part_file
+ */
+ public static final String RENDER_BLOCK_CORE_TEMPLATE_PART_FILE = "render_block_core_template_part_file";
+
+ /**
+ * Original hook name: render_block_core_template_part_none
+ */
+ public static final String RENDER_BLOCK_CORE_TEMPLATE_PART_NONE = "render_block_core_template_part_none";
+
+ /**
+ * Original hook name: render_block_core_template_part_post
+ */
+ public static final String RENDER_BLOCK_CORE_TEMPLATE_PART_POST = "render_block_core_template_part_post";
+
+ /**
+ * Original hook name: render_block_data
+ */
+ public static final String RENDER_BLOCK_DATA = "render_block_data";
+
+ /**
+ * Original hook name: render_block_{$this->name}
+ */
+ public static final String RENDER_BLOCK_THIS_NAME = "render_block_{$this->name}";
+
+ /**
+ * Original hook name: replace_editor
+ */
+ public static final String REPLACE_EDITOR = "replace_editor";
+
+ /**
+ * Original hook name: request
+ */
+ public static final String REQUEST = "request";
+
+ /**
+ * Original hook name: request_filesystem_credentials
+ */
+ public static final String REQUEST_FILESYSTEM_CREDENTIALS = "request_filesystem_credentials";
+
+ /**
+ * Original hook name: requests-{$hook}
+ */
+ public static final String REQUESTS_HOOK = "requests-{$hook}";
+
+ /**
+ * Original hook name: resetpass_form
+ */
+ public static final String RESETPASS_FORM = "resetpass_form";
+
+ /**
+ * Original hook name: respond_link
+ */
+ public static final String RESPOND_LINK = "respond_link";
+
+ /**
+ * Original hook name: rest_after_insert_application_password
+ */
+ public static final String REST_AFTER_INSERT_APPLICATION_PASSWORD = "rest_after_insert_application_password";
+
+ /**
+ * Original hook name: rest_after_insert_attachment
+ */
+ public static final String REST_AFTER_INSERT_ATTACHMENT = "rest_after_insert_attachment";
+
+ /**
+ * Original hook name: rest_after_insert_comment
+ */
+ public static final String REST_AFTER_INSERT_COMMENT = "rest_after_insert_comment";
+
+ /**
+ * Original hook name: rest_after_insert_nav_menu_item
+ */
+ public static final String REST_AFTER_INSERT_NAV_MENU_ITEM = "rest_after_insert_nav_menu_item";
+
+ /**
+ * Original hook name: rest_after_insert_user
+ */
+ public static final String REST_AFTER_INSERT_USER = "rest_after_insert_user";
+
+ /**
+ * Original hook name: rest_after_insert_{$this->post_type}
+ */
+ public static final String REST_AFTER_INSERT_THIS_POST_TYPE = "rest_after_insert_{$this->post_type}";
+
+ /**
+ * Original hook name: rest_after_insert_{$this->taxonomy}
+ */
+ public static final String REST_AFTER_INSERT_THIS_TAXONOMY = "rest_after_insert_{$this->taxonomy}";
+
+ /**
+ * Original hook name: rest_after_save_widget
+ */
+ public static final String REST_AFTER_SAVE_WIDGET = "rest_after_save_widget";
+
+ /**
+ * Original hook name: rest_allow_anonymous_comments
+ */
+ public static final String REST_ALLOW_ANONYMOUS_COMMENTS = "rest_allow_anonymous_comments";
+
+ /**
+ * Original hook name: rest_allowed_cors_headers
+ */
+ public static final String REST_ALLOWED_CORS_HEADERS = "rest_allowed_cors_headers";
+
+ /**
+ * Original hook name: rest_api_init
+ */
+ public static final String REST_API_INIT = "rest_api_init";
+
+ /**
+ * Original hook name: rest_authentication_errors
+ */
+ public static final String REST_AUTHENTICATION_ERRORS = "rest_authentication_errors";
+
+ /**
+ * Original hook name: rest_avatar_sizes
+ */
+ public static final String REST_AVATAR_SIZES = "rest_avatar_sizes";
+
+ /**
+ * Original hook name: rest_block_directory_collection_params
+ */
+ public static final String REST_BLOCK_DIRECTORY_COLLECTION_PARAMS = "rest_block_directory_collection_params";
+
+ /**
+ * Original hook name: rest_comment_collection_params
+ */
+ public static final String REST_COMMENT_COLLECTION_PARAMS = "rest_comment_collection_params";
+
+ /**
+ * Original hook name: rest_comment_query
+ */
+ public static final String REST_COMMENT_QUERY = "rest_comment_query";
+
+ /**
+ * Original hook name: rest_comment_trashable
+ */
+ public static final String REST_COMMENT_TRASHABLE = "rest_comment_trashable";
+
+ /**
+ * Original hook name: rest_delete_comment
+ */
+ public static final String REST_DELETE_COMMENT = "rest_delete_comment";
+
+ /**
+ * Original hook name: rest_delete_nav_menu_item
+ */
+ public static final String REST_DELETE_NAV_MENU_ITEM = "rest_delete_nav_menu_item";
+
+ /**
+ * Original hook name: rest_delete_revision
+ */
+ public static final String REST_DELETE_REVISION = "rest_delete_revision";
+
+ /**
+ * Original hook name: rest_delete_user
+ */
+ public static final String REST_DELETE_USER = "rest_delete_user";
+
+ /**
+ * Original hook name: rest_delete_widget
+ */
+ public static final String REST_DELETE_WIDGET = "rest_delete_widget";
+
+ /**
+ * Original hook name: rest_delete_{$this->post_type}
+ */
+ public static final String REST_DELETE_THIS_POST_TYPE = "rest_delete_{$this->post_type}";
+
+ /**
+ * Original hook name: rest_delete_{$this->taxonomy}
+ */
+ public static final String REST_DELETE_THIS_TAXONOMY = "rest_delete_{$this->taxonomy}";
+
+ /**
+ * Original hook name: rest_dispatch_request
+ */
+ public static final String REST_DISPATCH_REQUEST = "rest_dispatch_request";
+
+ /**
+ * Original hook name: rest_enabled
+ */
+ public static final String REST_ENABLED = "rest_enabled";
+
+ /**
+ * Original hook name: rest_endpoints
+ */
+ public static final String REST_ENDPOINTS = "rest_endpoints";
+
+ /**
+ * Original hook name: rest_endpoints_description
+ */
+ public static final String REST_ENDPOINTS_DESCRIPTION = "rest_endpoints_description";
+
+ /**
+ * Original hook name: rest_envelope_response
+ */
+ public static final String REST_ENVELOPE_RESPONSE = "rest_envelope_response";
+
+ /**
+ * Original hook name: rest_exposed_cors_headers
+ */
+ public static final String REST_EXPOSED_CORS_HEADERS = "rest_exposed_cors_headers";
+
+ /**
+ * Original hook name: rest_font_collections_collection_params
+ */
+ public static final String REST_FONT_COLLECTIONS_COLLECTION_PARAMS = "rest_font_collections_collection_params";
+
+ /**
+ * Original hook name: rest_get_max_batch_size
+ */
+ public static final String REST_GET_MAX_BATCH_SIZE = "rest_get_max_batch_size";
+
+ /**
+ * Original hook name: rest_index
+ */
+ public static final String REST_INDEX = "rest_index";
+
+ /**
+ * Original hook name: rest_insert_attachment
+ */
+ public static final String REST_INSERT_ATTACHMENT = "rest_insert_attachment";
+
+ /**
+ * Original hook name: rest_insert_comment
+ */
+ public static final String REST_INSERT_COMMENT = "rest_insert_comment";
+
+ /**
+ * Original hook name: rest_insert_nav_menu_item
+ */
+ public static final String REST_INSERT_NAV_MENU_ITEM = "rest_insert_nav_menu_item";
+
+ /**
+ * Original hook name: rest_insert_user
+ */
+ public static final String REST_INSERT_USER = "rest_insert_user";
+
+ /**
+ * Original hook name: rest_insert_{$this->post_type}
+ */
+ public static final String REST_INSERT_THIS_POST_TYPE = "rest_insert_{$this->post_type}";
+
+ /**
+ * Original hook name: rest_insert_{$this->taxonomy}
+ */
+ public static final String REST_INSERT_THIS_TAXONOMY = "rest_insert_{$this->taxonomy}";
+
+ /**
+ * Original hook name: rest_json_encode_options
+ */
+ public static final String REST_JSON_ENCODE_OPTIONS = "rest_json_encode_options";
+
+ /**
+ * Original hook name: rest_jsonp_enabled
+ */
+ public static final String REST_JSONP_ENABLED = "rest_jsonp_enabled";
+
+ /**
+ * Original hook name: rest_menu_read_access
+ */
+ public static final String REST_MENU_READ_ACCESS = "rest_menu_read_access";
+
+ /**
+ * Original hook name: rest_namespace_index
+ */
+ public static final String REST_NAMESPACE_INDEX = "rest_namespace_index";
+
+ /**
+ * Original hook name: rest_oembed_ttl
+ */
+ public static final String REST_OEMBED_TTL = "rest_oembed_ttl";
+
+ /**
+ * Original hook name: rest_pattern_directory_collection_params
+ */
+ public static final String REST_PATTERN_DIRECTORY_COLLECTION_PARAMS = "rest_pattern_directory_collection_params";
+
+ /**
+ * Original hook name: rest_post_dispatch
+ */
+ public static final String REST_POST_DISPATCH = "rest_post_dispatch";
+
+ /**
+ * Original hook name: rest_post_format_search_query
+ */
+ public static final String REST_POST_FORMAT_SEARCH_QUERY = "rest_post_format_search_query";
+
+ /**
+ * Original hook name: rest_post_search_query
+ */
+ public static final String REST_POST_SEARCH_QUERY = "rest_post_search_query";
+
+ /**
+ * Original hook name: rest_pre_dispatch
+ */
+ public static final String REST_PRE_DISPATCH = "rest_pre_dispatch";
+
+ /**
+ * Original hook name: rest_pre_echo_response
+ */
+ public static final String REST_PRE_ECHO_RESPONSE = "rest_pre_echo_response";
+
+ /**
+ * Original hook name: rest_pre_get_setting
+ */
+ public static final String REST_PRE_GET_SETTING = "rest_pre_get_setting";
+
+ /**
+ * Original hook name: rest_pre_insert_application_password
+ */
+ public static final String REST_PRE_INSERT_APPLICATION_PASSWORD = "rest_pre_insert_application_password";
+
+ /**
+ * Original hook name: rest_pre_insert_comment
+ */
+ public static final String REST_PRE_INSERT_COMMENT = "rest_pre_insert_comment";
+
+ /**
+ * Original hook name: rest_pre_insert_nav_menu_item
+ */
+ public static final String REST_PRE_INSERT_NAV_MENU_ITEM = "rest_pre_insert_nav_menu_item";
+
+ /**
+ * Original hook name: rest_pre_insert_user
+ */
+ public static final String REST_PRE_INSERT_USER = "rest_pre_insert_user";
+
+ /**
+ * Original hook name: rest_pre_insert_{$this->post_type}
+ */
+ public static final String REST_PRE_INSERT_THIS_POST_TYPE = "rest_pre_insert_{$this->post_type}";
+
+ /**
+ * Original hook name: rest_pre_insert_{$this->taxonomy}
+ */
+ public static final String REST_PRE_INSERT_THIS_TAXONOMY = "rest_pre_insert_{$this->taxonomy}";
+
+ /**
+ * Original hook name: rest_pre_serve_request
+ */
+ public static final String REST_PRE_SERVE_REQUEST = "rest_pre_serve_request";
+
+ /**
+ * Original hook name: rest_pre_update_setting
+ */
+ public static final String REST_PRE_UPDATE_SETTING = "rest_pre_update_setting";
+
+ /**
+ * Original hook name: rest_prepare_application_password
+ */
+ public static final String REST_PREPARE_APPLICATION_PASSWORD = "rest_prepare_application_password";
+
+ /**
+ * Original hook name: rest_prepare_attachment
+ */
+ public static final String REST_PREPARE_ATTACHMENT = "rest_prepare_attachment";
+
+ /**
+ * Original hook name: rest_prepare_autosave
+ */
+ public static final String REST_PREPARE_AUTOSAVE = "rest_prepare_autosave";
+
+ /**
+ * Original hook name: rest_prepare_block_pattern
+ */
+ public static final String REST_PREPARE_BLOCK_PATTERN = "rest_prepare_block_pattern";
+
+ /**
+ * Original hook name: rest_prepare_block_type
+ */
+ public static final String REST_PREPARE_BLOCK_TYPE = "rest_prepare_block_type";
+
+ /**
+ * Original hook name: rest_prepare_comment
+ */
+ public static final String REST_PREPARE_COMMENT = "rest_prepare_comment";
+
+ /**
+ * Original hook name: rest_prepare_font_collection
+ */
+ public static final String REST_PREPARE_FONT_COLLECTION = "rest_prepare_font_collection";
+
+ /**
+ * Original hook name: rest_prepare_menu_location
+ */
+ public static final String REST_PREPARE_MENU_LOCATION = "rest_prepare_menu_location";
+
+ /**
+ * Original hook name: rest_prepare_nav_menu_item
+ */
+ public static final String REST_PREPARE_NAV_MENU_ITEM = "rest_prepare_nav_menu_item";
+
+ /**
+ * Original hook name: rest_prepare_plugin
+ */
+ public static final String REST_PREPARE_PLUGIN = "rest_prepare_plugin";
+
+ /**
+ * Original hook name: rest_prepare_post_type
+ */
+ public static final String REST_PREPARE_POST_TYPE = "rest_prepare_post_type";
+
+ /**
+ * Original hook name: rest_prepare_revision
+ */
+ public static final String REST_PREPARE_REVISION = "rest_prepare_revision";
+
+ /**
+ * Original hook name: rest_prepare_sidebar
+ */
+ public static final String REST_PREPARE_SIDEBAR = "rest_prepare_sidebar";
+
+ /**
+ * Original hook name: rest_prepare_status
+ */
+ public static final String REST_PREPARE_STATUS = "rest_prepare_status";
+
+ /**
+ * Original hook name: rest_prepare_taxonomy
+ */
+ public static final String REST_PREPARE_TAXONOMY = "rest_prepare_taxonomy";
+
+ /**
+ * Original hook name: rest_prepare_theme
+ */
+ public static final String REST_PREPARE_THEME = "rest_prepare_theme";
+
+ /**
+ * Original hook name: rest_prepare_url_details
+ */
+ public static final String REST_PREPARE_URL_DETAILS = "rest_prepare_url_details";
+
+ /**
+ * Original hook name: rest_prepare_user
+ */
+ public static final String REST_PREPARE_USER = "rest_prepare_user";
+
+ /**
+ * Original hook name: rest_prepare_widget
+ */
+ public static final String REST_PREPARE_WIDGET = "rest_prepare_widget";
+
+ /**
+ * Original hook name: rest_prepare_widget_type
+ */
+ public static final String REST_PREPARE_WIDGET_TYPE = "rest_prepare_widget_type";
+
+ /**
+ * Original hook name: rest_prepare_wp_font_face
+ */
+ public static final String REST_PREPARE_WP_FONT_FACE = "rest_prepare_wp_font_face";
+
+ /**
+ * Original hook name: rest_prepare_wp_font_family
+ */
+ public static final String REST_PREPARE_WP_FONT_FAMILY = "rest_prepare_wp_font_family";
+
+ /**
+ * Original hook name: rest_prepare_{$this->post_type}
+ */
+ public static final String REST_PREPARE_THIS_POST_TYPE = "rest_prepare_{$this->post_type}";
+
+ /**
+ * Original hook name: rest_prepare_{$this->taxonomy}
+ */
+ public static final String REST_PREPARE_THIS_TAXONOMY = "rest_prepare_{$this->taxonomy}";
+
+ /**
+ * Original hook name: rest_preprocess_comment
+ */
+ public static final String REST_PREPROCESS_COMMENT = "rest_preprocess_comment";
+
+ /**
+ * Original hook name: rest_queried_resource_route
+ */
+ public static final String REST_QUERIED_RESOURCE_ROUTE = "rest_queried_resource_route";
+
+ /**
+ * Original hook name: rest_query_var-{$key}
+ */
+ public static final String REST_QUERY_VAR_KEY = "rest_query_var-{$key}";
+
+ /**
+ * Original hook name: rest_request_after_callbacks
+ */
+ public static final String REST_REQUEST_AFTER_CALLBACKS = "rest_request_after_callbacks";
+
+ /**
+ * Original hook name: rest_request_before_callbacks
+ */
+ public static final String REST_REQUEST_BEFORE_CALLBACKS = "rest_request_before_callbacks";
+
+ /**
+ * Original hook name: rest_request_from_url
+ */
+ public static final String REST_REQUEST_FROM_URL = "rest_request_from_url";
+
+ /**
+ * Original hook name: rest_request_parameter_order
+ */
+ public static final String REST_REQUEST_PARAMETER_ORDER = "rest_request_parameter_order";
+
+ /**
+ * Original hook name: rest_response_link_curies
+ */
+ public static final String REST_RESPONSE_LINK_CURIES = "rest_response_link_curies";
+
+ /**
+ * Original hook name: rest_revision_query
+ */
+ public static final String REST_REVISION_QUERY = "rest_revision_query";
+
+ /**
+ * Original hook name: rest_route_data
+ */
+ public static final String REST_ROUTE_DATA = "rest_route_data";
+
+ /**
+ * Original hook name: rest_route_for_post
+ */
+ public static final String REST_ROUTE_FOR_POST = "rest_route_for_post";
+
+ /**
+ * Original hook name: rest_route_for_post_type_items
+ */
+ public static final String REST_ROUTE_FOR_POST_TYPE_ITEMS = "rest_route_for_post_type_items";
+
+ /**
+ * Original hook name: rest_route_for_taxonomy_items
+ */
+ public static final String REST_ROUTE_FOR_TAXONOMY_ITEMS = "rest_route_for_taxonomy_items";
+
+ /**
+ * Original hook name: rest_route_for_term
+ */
+ public static final String REST_ROUTE_FOR_TERM = "rest_route_for_term";
+
+ /**
+ * Original hook name: rest_save_sidebar
+ */
+ public static final String REST_SAVE_SIDEBAR = "rest_save_sidebar";
+
+ /**
+ * Original hook name: rest_send_nocache_headers
+ */
+ public static final String REST_SEND_NOCACHE_HEADERS = "rest_send_nocache_headers";
+
+ /**
+ * Original hook name: rest_term_search_query
+ */
+ public static final String REST_TERM_SEARCH_QUERY = "rest_term_search_query";
+
+ /**
+ * Original hook name: rest_themes_collection_params
+ */
+ public static final String REST_THEMES_COLLECTION_PARAMS = "rest_themes_collection_params";
+
+ /**
+ * Original hook name: rest_url
+ */
+ public static final String REST_URL = "rest_url";
+
+ /**
+ * Original hook name: rest_url_details_cache_expiration
+ */
+ public static final String REST_URL_DETAILS_CACHE_EXPIRATION = "rest_url_details_cache_expiration";
+
+ /**
+ * Original hook name: rest_url_details_http_request_args
+ */
+ public static final String REST_URL_DETAILS_HTTP_REQUEST_ARGS = "rest_url_details_http_request_args";
+
+ /**
+ * Original hook name: rest_url_prefix
+ */
+ public static final String REST_URL_PREFIX = "rest_url_prefix";
+
+ /**
+ * Original hook name: rest_user_collection_params
+ */
+ public static final String REST_USER_COLLECTION_PARAMS = "rest_user_collection_params";
+
+ /**
+ * Original hook name: rest_user_query
+ */
+ public static final String REST_USER_QUERY = "rest_user_query";
+
+ /**
+ * Original hook name: rest_wp_font_face_collection_params
+ */
+ public static final String REST_WP_FONT_FACE_COLLECTION_PARAMS = "rest_wp_font_face_collection_params";
+
+ /**
+ * Original hook name: rest_wp_font_family_collection_params
+ */
+ public static final String REST_WP_FONT_FAMILY_COLLECTION_PARAMS = "rest_wp_font_family_collection_params";
+
+ /**
+ * Original hook name: rest_{$this->post_type}_collection_params
+ */
+ public static final String REST_THIS_POST_TYPE_COLLECTION_PARAMS = "rest_{$this->post_type}_collection_params";
+
+ /**
+ * Original hook name: rest_{$this->post_type}_item_schema
+ */
+ public static final String REST_THIS_POST_TYPE_ITEM_SCHEMA = "rest_{$this->post_type}_item_schema";
+
+ /**
+ * Original hook name: rest_{$this->post_type}_query
+ */
+ public static final String REST_THIS_POST_TYPE_QUERY = "rest_{$this->post_type}_query";
+
+ /**
+ * Original hook name: rest_{$this->post_type}_trashable
+ */
+ public static final String REST_THIS_POST_TYPE_TRASHABLE = "rest_{$this->post_type}_trashable";
+
+ /**
+ * Original hook name: rest_{$this->taxonomy}_collection_params
+ */
+ public static final String REST_THIS_TAXONOMY_COLLECTION_PARAMS = "rest_{$this->taxonomy}_collection_params";
+
+ /**
+ * Original hook name: rest_{$this->taxonomy}_query
+ */
+ public static final String REST_THIS_TAXONOMY_QUERY = "rest_{$this->taxonomy}_query";
+
+ /**
+ * Original hook name: restore_previous_locale
+ */
+ public static final String RESTORE_PREVIOUS_LOCALE = "restore_previous_locale";
+
+ /**
+ * Original hook name: restrict_manage_comments
+ */
+ public static final String RESTRICT_MANAGE_COMMENTS = "restrict_manage_comments";
+
+ /**
+ * Original hook name: restrict_manage_posts
+ */
+ public static final String RESTRICT_MANAGE_POSTS = "restrict_manage_posts";
+
+ /**
+ * Original hook name: restrict_manage_sites
+ */
+ public static final String RESTRICT_MANAGE_SITES = "restrict_manage_sites";
+
+ /**
+ * Original hook name: restrict_manage_users
+ */
+ public static final String RESTRICT_MANAGE_USERS = "restrict_manage_users";
+
+ /**
+ * Original hook name: retreive_password
+ */
+ public static final String RETREIVE_PASSWORD = "retreive_password";
+
+ /**
+ * Original hook name: retrieve_password
+ */
+ public static final String RETRIEVE_PASSWORD = "retrieve_password";
+
+ /**
+ * Original hook name: retrieve_password_key
+ */
+ public static final String RETRIEVE_PASSWORD_KEY = "retrieve_password_key";
+
+ /**
+ * Original hook name: retrieve_password_message
+ */
+ public static final String RETRIEVE_PASSWORD_MESSAGE = "retrieve_password_message";
+
+ /**
+ * Original hook name: retrieve_password_notification_email
+ */
+ public static final String RETRIEVE_PASSWORD_NOTIFICATION_EMAIL = "retrieve_password_notification_email";
+
+ /**
+ * Original hook name: retrieve_password_title
+ */
+ public static final String RETRIEVE_PASSWORD_TITLE = "retrieve_password_title";
+
+ /**
+ * Original hook name: revision_text_diff_options
+ */
+ public static final String REVISION_TEXT_DIFF_OPTIONS = "revision_text_diff_options";
+
+ /**
+ * Original hook name: revoke_super_admin
+ */
+ public static final String REVOKE_SUPER_ADMIN = "revoke_super_admin";
+
+ /**
+ * Original hook name: revoked_super_admin
+ */
+ public static final String REVOKED_SUPER_ADMIN = "revoked_super_admin";
+
+ /**
+ * Original hook name: rewrite_rules
+ */
+ public static final String REWRITE_RULES = "rewrite_rules";
+
+ /**
+ * Original hook name: rewrite_rules_array
+ */
+ public static final String REWRITE_RULES_ARRAY = "rewrite_rules_array";
+
+ /**
+ * Original hook name: richedit_pre
+ */
+ public static final String RICHEDIT_PRE = "richedit_pre";
+
+ /**
+ * Original hook name: right_now_content_table_end
+ */
+ public static final String RIGHT_NOW_CONTENT_TABLE_END = "right_now_content_table_end";
+
+ /**
+ * Original hook name: right_now_discussion_table_end
+ */
+ public static final String RIGHT_NOW_DISCUSSION_TABLE_END = "right_now_discussion_table_end";
+
+ /**
+ * Original hook name: right_now_table_end
+ */
+ public static final String RIGHT_NOW_TABLE_END = "right_now_table_end";
+
+ /**
+ * Original hook name: rightnow_end
+ */
+ public static final String RIGHTNOW_END = "rightnow_end";
+
+ /**
+ * Original hook name: robots_txt
+ */
+ public static final String ROBOTS_TXT = "robots_txt";
+
+ /**
+ * Original hook name: role_has_cap
+ */
+ public static final String ROLE_HAS_CAP = "role_has_cap";
+
+ /**
+ * Original hook name: root_rewrite_rules
+ */
+ public static final String ROOT_REWRITE_RULES = "root_rewrite_rules";
+
+ /**
+ * Original hook name: rss2_comments_ns
+ */
+ public static final String RSS2_COMMENTS_NS = "rss2_comments_ns";
+
+ /**
+ * Original hook name: rss2_head
+ */
+ public static final String RSS2_HEAD = "rss2_head";
+
+ /**
+ * Original hook name: rss2_item
+ */
+ public static final String RSS2_ITEM = "rss2_item";
+
+ /**
+ * Original hook name: rss2_ns
+ */
+ public static final String RSS2_NS = "rss2_ns";
+
+ /**
+ * Original hook name: rss_enclosure
+ */
+ public static final String RSS_ENCLOSURE = "rss_enclosure";
+
+ /**
+ * Original hook name: rss_head
+ */
+ public static final String RSS_HEAD = "rss_head";
+
+ /**
+ * Original hook name: rss_item
+ */
+ public static final String RSS_ITEM = "rss_item";
+
+ /**
+ * Original hook name: rss_tag_pre
+ */
+ public static final String RSS_TAG_PRE = "rss_tag_pre";
+
+ /**
+ * Original hook name: rss_update_frequency
+ */
+ public static final String RSS_UPDATE_FREQUENCY = "rss_update_frequency";
+
+ /**
+ * Original hook name: rss_update_period
+ */
+ public static final String RSS_UPDATE_PERIOD = "rss_update_period";
+
+ /**
+ * Original hook name: rss_widget_feed_link
+ */
+ public static final String RSS_WIDGET_FEED_LINK = "rss_widget_feed_link";
+
+ /**
+ * Original hook name: run_wptexturize
+ */
+ public static final String RUN_WPTEXTURIZE = "run_wptexturize";
+
+ /**
+ * Original hook name: safe_style_css
+ */
+ public static final String SAFE_STYLE_CSS = "safe_style_css";
+
+ /**
+ * Original hook name: safecss_filter_attr_allow_css
+ */
+ public static final String SAFECSS_FILTER_ATTR_ALLOW_CSS = "safecss_filter_attr_allow_css";
+
+ /**
+ * Original hook name: salt
+ */
+ public static final String SALT = "salt";
+
+ /**
+ * Original hook name: sanitize_comment_cookies
+ */
+ public static final String SANITIZE_COMMENT_COOKIES = "sanitize_comment_cookies";
+
+ /**
+ * Original hook name: sanitize_email
+ */
+ public static final String SANITIZE_EMAIL = "sanitize_email";
+
+ /**
+ * Original hook name: sanitize_file_name
+ */
+ public static final String SANITIZE_FILE_NAME = "sanitize_file_name";
+
+ /**
+ * Original hook name: sanitize_file_name_chars
+ */
+ public static final String SANITIZE_FILE_NAME_CHARS = "sanitize_file_name_chars";
+
+ /**
+ * Original hook name: sanitize_html_class
+ */
+ public static final String SANITIZE_HTML_CLASS = "sanitize_html_class";
+
+ /**
+ * Original hook name: sanitize_key
+ */
+ public static final String SANITIZE_KEY = "sanitize_key";
+
+ /**
+ * Original hook name: sanitize_locale_name
+ */
+ public static final String SANITIZE_LOCALE_NAME = "sanitize_locale_name";
+
+ /**
+ * Original hook name: sanitize_meta
+ */
+ public static final String SANITIZE_META = "sanitize_meta";
+
+ /**
+ * Original hook name: sanitize_mime_type
+ */
+ public static final String SANITIZE_MIME_TYPE = "sanitize_mime_type";
+
+ /**
+ * Original hook name: sanitize_option_{$option}
+ */
+ public static final String SANITIZE_OPTION_OPTION = "sanitize_option_{$option}";
+
+ /**
+ * Original hook name: sanitize_text_field
+ */
+ public static final String SANITIZE_TEXT_FIELD = "sanitize_text_field";
+
+ /**
+ * Original hook name: sanitize_textarea_field
+ */
+ public static final String SANITIZE_TEXTAREA_FIELD = "sanitize_textarea_field";
+
+ /**
+ * Original hook name: sanitize_title
+ */
+ public static final String SANITIZE_TITLE = "sanitize_title";
+
+ /**
+ * Original hook name: sanitize_trackback_urls
+ */
+ public static final String SANITIZE_TRACKBACK_URLS = "sanitize_trackback_urls";
+
+ /**
+ * Original hook name: sanitize_user
+ */
+ public static final String SANITIZE_USER = "sanitize_user";
+
+ /**
+ * Original hook name: sanitize_{$meta_type}_meta_{$meta_key}
+ */
+ public static final String SANITIZE_META_TYPE_META_META_KEY = "sanitize_{$meta_type}_meta_{$meta_key}";
+
+ /**
+ * Original hook name: sanitize_{$object_type}_meta_{$meta_key}
+ */
+ public static final String SANITIZE_OBJECT_TYPE_META_META_KEY = "sanitize_{$object_type}_meta_{$meta_key}";
+
+ /**
+ * Original hook name: sanitize_{$object_type}_meta_{$meta_key}_for_{$object_subtype}
+ */
+ public static final String SANITIZE_OBJECT_TYPE_META_META_KEY_FOR_OBJECT_SUBTYPE = "sanitize_{$object_type}_meta_{$meta_key}_for_{$object_subtype}";
+
+ /**
+ * Original hook name: save_post
+ */
+ public static final String SAVE_POST = "save_post";
+
+ /**
+ * Original hook name: save_post_{$post->post_type}
+ */
+ public static final String SAVE_POST_POST_POST_TYPE = "save_post_{$post->post_type}";
+
+ /**
+ * Original hook name: saved_term
+ */
+ public static final String SAVED_TERM = "saved_term";
+
+ /**
+ * Original hook name: saved_{$taxonomy}
+ */
+ public static final String SAVED_TAXONOMY = "saved_{$taxonomy}";
+
+ /**
+ * Original hook name: schedule_event
+ */
+ public static final String SCHEDULE_EVENT = "schedule_event";
+
+ /**
+ * Original hook name: screen_layout_columns
+ */
+ public static final String SCREEN_LAYOUT_COLUMNS = "screen_layout_columns";
+
+ /**
+ * Original hook name: screen_meta_screen
+ */
+ public static final String SCREEN_META_SCREEN = "screen_meta_screen";
+
+ /**
+ * Original hook name: screen_options_show_screen
+ */
+ public static final String SCREEN_OPTIONS_SHOW_SCREEN = "screen_options_show_screen";
+
+ /**
+ * Original hook name: screen_options_show_submit
+ */
+ public static final String SCREEN_OPTIONS_SHOW_SUBMIT = "screen_options_show_submit";
+
+ /**
+ * Original hook name: screen_settings
+ */
+ public static final String SCREEN_SETTINGS = "screen_settings";
+
+ /**
+ * Original hook name: script_loader_src
+ */
+ public static final String SCRIPT_LOADER_SRC = "script_loader_src";
+
+ /**
+ * Original hook name: script_loader_tag
+ */
+ public static final String SCRIPT_LOADER_TAG = "script_loader_tag";
+
+ /**
+ * Original hook name: script_module_data_{$module_id}
+ */
+ public static final String SCRIPT_MODULE_DATA_MODULE_ID = "script_module_data_{$module_id}";
+
+ /**
+ * Original hook name: script_module_loader_src
+ */
+ public static final String SCRIPT_MODULE_LOADER_SRC = "script_module_loader_src";
+
+ /**
+ * Original hook name: search_feed_link
+ */
+ public static final String SEARCH_FEED_LINK = "search_feed_link";
+
+ /**
+ * Original hook name: search_form_args
+ */
+ public static final String SEARCH_FORM_ARGS = "search_form_args";
+
+ /**
+ * Original hook name: search_form_format
+ */
+ public static final String SEARCH_FORM_FORMAT = "search_form_format";
+
+ /**
+ * Original hook name: search_link
+ */
+ public static final String SEARCH_LINK = "search_link";
+
+ /**
+ * Original hook name: search_rewrite_rules
+ */
+ public static final String SEARCH_REWRITE_RULES = "search_rewrite_rules";
+
+ /**
+ * Original hook name: secure_auth_cookie
+ */
+ public static final String SECURE_AUTH_COOKIE = "secure_auth_cookie";
+
+ /**
+ * Original hook name: secure_auth_redirect
+ */
+ public static final String SECURE_AUTH_REDIRECT = "secure_auth_redirect";
+
+ /**
+ * Original hook name: secure_logged_in_cookie
+ */
+ public static final String SECURE_LOGGED_IN_COOKIE = "secure_logged_in_cookie";
+
+ /**
+ * Original hook name: secure_signon_cookie
+ */
+ public static final String SECURE_SIGNON_COOKIE = "secure_signon_cookie";
+
+ /**
+ * Original hook name: self_admin_url
+ */
+ public static final String SELF_ADMIN_URL = "self_admin_url";
+
+ /**
+ * Original hook name: self_link
+ */
+ public static final String SELF_LINK = "self_link";
+
+ /**
+ * Original hook name: send_auth_cookies
+ */
+ public static final String SEND_AUTH_COOKIES = "send_auth_cookies";
+
+ /**
+ * Original hook name: send_core_update_notification_email
+ */
+ public static final String SEND_CORE_UPDATE_NOTIFICATION_EMAIL = "send_core_update_notification_email";
+
+ /**
+ * Original hook name: send_email_change_email
+ */
+ public static final String SEND_EMAIL_CHANGE_EMAIL = "send_email_change_email";
+
+ /**
+ * Original hook name: send_headers
+ */
+ public static final String SEND_HEADERS = "send_headers";
+
+ /**
+ * Original hook name: send_network_admin_email_change_email
+ */
+ public static final String SEND_NETWORK_ADMIN_EMAIL_CHANGE_EMAIL = "send_network_admin_email_change_email";
+
+ /**
+ * Original hook name: send_new_site_email
+ */
+ public static final String SEND_NEW_SITE_EMAIL = "send_new_site_email";
+
+ /**
+ * Original hook name: send_password_change_email
+ */
+ public static final String SEND_PASSWORD_CHANGE_EMAIL = "send_password_change_email";
+
+ /**
+ * Original hook name: send_retrieve_password_email
+ */
+ public static final String SEND_RETRIEVE_PASSWORD_EMAIL = "send_retrieve_password_email";
+
+ /**
+ * Original hook name: send_site_admin_email_change_email
+ */
+ public static final String SEND_SITE_ADMIN_EMAIL_CHANGE_EMAIL = "send_site_admin_email_change_email";
+
+ /**
+ * Original hook name: session_token_manager
+ */
+ public static final String SESSION_TOKEN_MANAGER = "session_token_manager";
+
+ /**
+ * Original hook name: set-screen-option
+ */
+ public static final String SET_SCREEN_OPTION = "set-screen-option";
+
+ /**
+ * Original hook name: set_404
+ */
+ public static final String SET_404 = "set_404";
+
+ /**
+ * Original hook name: set_auth_cookie
+ */
+ public static final String SET_AUTH_COOKIE = "set_auth_cookie";
+
+ /**
+ * Original hook name: set_comment_cookies
+ */
+ public static final String SET_COMMENT_COOKIES = "set_comment_cookies";
+
+ /**
+ * Original hook name: set_current_user
+ */
+ public static final String SET_CURRENT_USER = "set_current_user";
+
+ /**
+ * Original hook name: set_logged_in_cookie
+ */
+ public static final String SET_LOGGED_IN_COOKIE = "set_logged_in_cookie";
+
+ /**
+ * Original hook name: set_object_terms
+ */
+ public static final String SET_OBJECT_TERMS = "set_object_terms";
+
+ /**
+ * Original hook name: set_screen_option_{$option}
+ */
+ public static final String SET_SCREEN_OPTION_OPTION = "set_screen_option_{$option}";
+
+ /**
+ * Original hook name: set_site_transient
+ */
+ public static final String SET_SITE_TRANSIENT = "set_site_transient";
+
+ /**
+ * Original hook name: set_site_transient_{$transient}
+ */
+ public static final String SET_SITE_TRANSIENT_TRANSIENT = "set_site_transient_{$transient}";
+
+ /**
+ * Original hook name: set_transient
+ */
+ public static final String SET_TRANSIENT = "set_transient";
+
+ /**
+ * Original hook name: set_transient_{$transient}
+ */
+ public static final String SET_TRANSIENT_TRANSIENT = "set_transient_{$transient}";
+
+ /**
+ * Original hook name: set_url_scheme
+ */
+ public static final String SET_URL_SCHEME = "set_url_scheme";
+
+ /**
+ * Original hook name: set_user_role
+ */
+ public static final String SET_USER_ROLE = "set_user_role";
+
+ /**
+ * Original hook name: setted_site_transient
+ */
+ public static final String SETTED_SITE_TRANSIENT = "setted_site_transient";
+
+ /**
+ * Original hook name: setted_transient
+ */
+ public static final String SETTED_TRANSIENT = "setted_transient";
+
+ /**
+ * Original hook name: setup_theme
+ */
+ public static final String SETUP_THEME = "setup_theme";
+
+ /**
+ * Original hook name: shake_error_codes
+ */
+ public static final String SHAKE_ERROR_CODES = "shake_error_codes";
+
+ /**
+ * Original hook name: shortcode_atts_{$shortcode}
+ */
+ public static final String SHORTCODE_ATTS_SHORTCODE = "shortcode_atts_{$shortcode}";
+
+ /**
+ * Original hook name: shortcut_link
+ */
+ public static final String SHORTCUT_LINK = "shortcut_link";
+
+ /**
+ * Original hook name: should_load_block_assets_on_demand
+ */
+ public static final String SHOULD_LOAD_BLOCK_ASSETS_ON_DEMAND = "should_load_block_assets_on_demand";
+
+ /**
+ * Original hook name: should_load_block_editor_scripts_and_styles
+ */
+ public static final String SHOULD_LOAD_BLOCK_EDITOR_SCRIPTS_AND_STYLES = "should_load_block_editor_scripts_and_styles";
+
+ /**
+ * Original hook name: should_load_remote_block_patterns
+ */
+ public static final String SHOULD_LOAD_REMOTE_BLOCK_PATTERNS = "should_load_remote_block_patterns";
+
+ /**
+ * Original hook name: should_load_separate_core_block_assets
+ */
+ public static final String SHOULD_LOAD_SEPARATE_CORE_BLOCK_ASSETS = "should_load_separate_core_block_assets";
+
+ /**
+ * Original hook name: show_adduser_fields
+ */
+ public static final String SHOW_ADDUSER_FIELDS = "show_adduser_fields";
+
+ /**
+ * Original hook name: show_admin_bar
+ */
+ public static final String SHOW_ADMIN_BAR = "show_admin_bar";
+
+ /**
+ * Original hook name: show_advanced_plugins
+ */
+ public static final String SHOW_ADVANCED_PLUGINS = "show_advanced_plugins";
+
+ /**
+ * Original hook name: show_network_active_plugins
+ */
+ public static final String SHOW_NETWORK_ACTIVE_PLUGINS = "show_network_active_plugins";
+
+ /**
+ * Original hook name: show_network_site_users_add_existing_form
+ */
+ public static final String SHOW_NETWORK_SITE_USERS_ADD_EXISTING_FORM = "show_network_site_users_add_existing_form";
+
+ /**
+ * Original hook name: show_network_site_users_add_new_form
+ */
+ public static final String SHOW_NETWORK_SITE_USERS_ADD_NEW_FORM = "show_network_site_users_add_new_form";
+
+ /**
+ * Original hook name: show_password_fields
+ */
+ public static final String SHOW_PASSWORD_FIELDS = "show_password_fields";
+
+ /**
+ * Original hook name: show_post_locked_dialog
+ */
+ public static final String SHOW_POST_LOCKED_DIALOG = "show_post_locked_dialog";
+
+ /**
+ * Original hook name: show_recent_comments_widget_style
+ */
+ public static final String SHOW_RECENT_COMMENTS_WIDGET_STYLE = "show_recent_comments_widget_style";
+
+ /**
+ * Original hook name: show_user_profile
+ */
+ public static final String SHOW_USER_PROFILE = "show_user_profile";
+
+ /**
+ * Original hook name: shutdown
+ */
+ public static final String SHUTDOWN = "shutdown";
+
+ /**
+ * Original hook name: sidebar_admin_page
+ */
+ public static final String SIDEBAR_ADMIN_PAGE = "sidebar_admin_page";
+
+ /**
+ * Original hook name: sidebar_admin_setup
+ */
+ public static final String SIDEBAR_ADMIN_SETUP = "sidebar_admin_setup";
+
+ /**
+ * Original hook name: sidebars_widgets
+ */
+ public static final String SIDEBARS_WIDGETS = "sidebars_widgets";
+
+ /**
+ * Original hook name: sidemenu
+ */
+ public static final String SIDEMENU = "sidemenu";
+
+ /**
+ * Original hook name: signup_another_blog_init
+ */
+ public static final String SIGNUP_ANOTHER_BLOG_INIT = "signup_another_blog_init";
+
+ /**
+ * Original hook name: signup_blog_init
+ */
+ public static final String SIGNUP_BLOG_INIT = "signup_blog_init";
+
+ /**
+ * Original hook name: signup_blogform
+ */
+ public static final String SIGNUP_BLOGFORM = "signup_blogform";
+
+ /**
+ * Original hook name: signup_create_blog_meta
+ */
+ public static final String SIGNUP_CREATE_BLOG_META = "signup_create_blog_meta";
+
+ /**
+ * Original hook name: signup_extra_fields
+ */
+ public static final String SIGNUP_EXTRA_FIELDS = "signup_extra_fields";
+
+ /**
+ * Original hook name: signup_finished
+ */
+ public static final String SIGNUP_FINISHED = "signup_finished";
+
+ /**
+ * Original hook name: signup_get_available_languages
+ */
+ public static final String SIGNUP_GET_AVAILABLE_LANGUAGES = "signup_get_available_languages";
+
+ /**
+ * Original hook name: signup_header
+ */
+ public static final String SIGNUP_HEADER = "signup_header";
+
+ /**
+ * Original hook name: signup_hidden_fields
+ */
+ public static final String SIGNUP_HIDDEN_FIELDS = "signup_hidden_fields";
+
+ /**
+ * Original hook name: signup_site_meta
+ */
+ public static final String SIGNUP_SITE_META = "signup_site_meta";
+
+ /**
+ * Original hook name: signup_user_init
+ */
+ public static final String SIGNUP_USER_INIT = "signup_user_init";
+
+ /**
+ * Original hook name: signup_user_meta
+ */
+ public static final String SIGNUP_USER_META = "signup_user_meta";
+
+ /**
+ * Original hook name: simple_edit_form
+ */
+ public static final String SIMPLE_EDIT_FORM = "simple_edit_form";
+
+ /**
+ * Original hook name: single_cat_title
+ */
+ public static final String SINGLE_CAT_TITLE = "single_cat_title";
+
+ /**
+ * Original hook name: single_post_title
+ */
+ public static final String SINGLE_POST_TITLE = "single_post_title";
+
+ /**
+ * Original hook name: single_tag_title
+ */
+ public static final String SINGLE_TAG_TITLE = "single_tag_title";
+
+ /**
+ * Original hook name: single_template
+ */
+ public static final String SINGLE_TEMPLATE = "single_template";
+
+ /**
+ * Original hook name: single_term_title
+ */
+ public static final String SINGLE_TERM_TITLE = "single_term_title";
+
+ /**
+ * Original hook name: site_admin_email_change_email
+ */
+ public static final String SITE_ADMIN_EMAIL_CHANGE_EMAIL = "site_admin_email_change_email";
+
+ /**
+ * Original hook name: site_allowed_themes
+ */
+ public static final String SITE_ALLOWED_THEMES = "site_allowed_themes";
+
+ /**
+ * Original hook name: site_by_path_segments_count
+ */
+ public static final String SITE_BY_PATH_SEGMENTS_COUNT = "site_by_path_segments_count";
+
+ /**
+ * Original hook name: site_details
+ */
+ public static final String SITE_DETAILS = "site_details";
+
+ /**
+ * Original hook name: site_editor_no_javascript_message
+ */
+ public static final String SITE_EDITOR_NO_JAVASCRIPT_MESSAGE = "site_editor_no_javascript_message";
+
+ /**
+ * Original hook name: site_health_navigation_tabs
+ */
+ public static final String SITE_HEALTH_NAVIGATION_TABS = "site_health_navigation_tabs";
+
+ /**
+ * Original hook name: site_health_tab_content
+ */
+ public static final String SITE_HEALTH_TAB_CONTENT = "site_health_tab_content";
+
+ /**
+ * Original hook name: site_health_test_rest_capability_{$check}
+ */
+ public static final String SITE_HEALTH_TEST_REST_CAPABILITY_CHECK = "site_health_test_rest_capability_{$check}";
+
+ /**
+ * Original hook name: site_icon_attachment_metadata
+ */
+ public static final String SITE_ICON_ATTACHMENT_METADATA = "site_icon_attachment_metadata";
+
+ /**
+ * Original hook name: site_icon_image_sizes
+ */
+ public static final String SITE_ICON_IMAGE_SIZES = "site_icon_image_sizes";
+
+ /**
+ * Original hook name: site_icon_meta_tags
+ */
+ public static final String SITE_ICON_META_TAGS = "site_icon_meta_tags";
+
+ /**
+ * Original hook name: site_option_{$key}
+ */
+ public static final String SITE_OPTION_KEY = "site_option_{$key}";
+
+ /**
+ * Original hook name: site_option_{$option}
+ */
+ public static final String SITE_OPTION_OPTION = "site_option_{$option}";
+
+ /**
+ * Original hook name: site_search_columns
+ */
+ public static final String SITE_SEARCH_COLUMNS = "site_search_columns";
+
+ /**
+ * Original hook name: site_status_autoloaded_options_action_to_perform
+ */
+ public static final String SITE_STATUS_AUTOLOADED_OPTIONS_ACTION_TO_PERFORM = "site_status_autoloaded_options_action_to_perform";
+
+ /**
+ * Original hook name: site_status_autoloaded_options_limit_description
+ */
+ public static final String SITE_STATUS_AUTOLOADED_OPTIONS_LIMIT_DESCRIPTION = "site_status_autoloaded_options_limit_description";
+
+ /**
+ * Original hook name: site_status_autoloaded_options_size_limit
+ */
+ public static final String SITE_STATUS_AUTOLOADED_OPTIONS_SIZE_LIMIT = "site_status_autoloaded_options_size_limit";
+
+ /**
+ * Original hook name: site_status_available_object_cache_services
+ */
+ public static final String SITE_STATUS_AVAILABLE_OBJECT_CACHE_SERVICES = "site_status_available_object_cache_services";
+
+ /**
+ * Original hook name: site_status_good_response_time_threshold
+ */
+ public static final String SITE_STATUS_GOOD_RESPONSE_TIME_THRESHOLD = "site_status_good_response_time_threshold";
+
+ /**
+ * Original hook name: site_status_page_cache_supported_cache_headers
+ */
+ public static final String SITE_STATUS_PAGE_CACHE_SUPPORTED_CACHE_HEADERS = "site_status_page_cache_supported_cache_headers";
+
+ /**
+ * Original hook name: site_status_persistent_object_cache_notes
+ */
+ public static final String SITE_STATUS_PERSISTENT_OBJECT_CACHE_NOTES = "site_status_persistent_object_cache_notes";
+
+ /**
+ * Original hook name: site_status_persistent_object_cache_thresholds
+ */
+ public static final String SITE_STATUS_PERSISTENT_OBJECT_CACHE_THRESHOLDS = "site_status_persistent_object_cache_thresholds";
+
+ /**
+ * Original hook name: site_status_persistent_object_cache_url
+ */
+ public static final String SITE_STATUS_PERSISTENT_OBJECT_CACHE_URL = "site_status_persistent_object_cache_url";
+
+ /**
+ * Original hook name: site_status_should_suggest_persistent_object_cache
+ */
+ public static final String SITE_STATUS_SHOULD_SUGGEST_PERSISTENT_OBJECT_CACHE = "site_status_should_suggest_persistent_object_cache";
+
+ /**
+ * Original hook name: site_status_test_php_modules
+ */
+ public static final String SITE_STATUS_TEST_PHP_MODULES = "site_status_test_php_modules";
+
+ /**
+ * Original hook name: site_status_test_result
+ */
+ public static final String SITE_STATUS_TEST_RESULT = "site_status_test_result";
+
+ /**
+ * Original hook name: site_status_tests
+ */
+ public static final String SITE_STATUS_TESTS = "site_status_tests";
+
+ /**
+ * Original hook name: site_transient_{$transient}
+ */
+ public static final String SITE_TRANSIENT_TRANSIENT = "site_transient_{$transient}";
+
+ /**
+ * Original hook name: site_url
+ */
+ public static final String SITE_URL = "site_url";
+
+ /**
+ * Original hook name: sites_clauses
+ */
+ public static final String SITES_CLAUSES = "sites_clauses";
+
+ /**
+ * Original hook name: sites_pre_query
+ */
+ public static final String SITES_PRE_QUERY = "sites_pre_query";
+
+ /**
+ * Original hook name: smilies
+ */
+ public static final String SMILIES = "smilies";
+
+ /**
+ * Original hook name: smilies_src
+ */
+ public static final String SMILIES_SRC = "smilies_src";
+
+ /**
+ * Original hook name: spam_comment
+ */
+ public static final String SPAM_COMMENT = "spam_comment";
+
+ /**
+ * Original hook name: spammed_comment
+ */
+ public static final String SPAMMED_COMMENT = "spammed_comment";
+
+ /**
+ * Original hook name: split_shared_term
+ */
+ public static final String SPLIT_SHARED_TERM = "split_shared_term";
+
+ /**
+ * Original hook name: split_the_query
+ */
+ public static final String SPLIT_THE_QUERY = "split_the_query";
+
+ /**
+ * Original hook name: start_previewing_theme
+ */
+ public static final String START_PREVIEWING_THEME = "start_previewing_theme";
+
+ /**
+ * Original hook name: status_header
+ */
+ public static final String STATUS_HEADER = "status_header";
+
+ /**
+ * Original hook name: status_save_pre
+ */
+ public static final String STATUS_SAVE_PRE = "status_save_pre";
+
+ /**
+ * Original hook name: stop_previewing_theme
+ */
+ public static final String STOP_PREVIEWING_THEME = "stop_previewing_theme";
+
+ /**
+ * Original hook name: strict_redirect_guess_404_permalink
+ */
+ public static final String STRICT_REDIRECT_GUESS_404_PERMALINK = "strict_redirect_guess_404_permalink";
+
+ /**
+ * Original hook name: strip_shortcodes_tagnames
+ */
+ public static final String STRIP_SHORTCODES_TAGNAMES = "strip_shortcodes_tagnames";
+
+ /**
+ * Original hook name: style_loader_src
+ */
+ public static final String STYLE_LOADER_SRC = "style_loader_src";
+
+ /**
+ * Original hook name: style_loader_tag
+ */
+ public static final String STYLE_LOADER_TAG = "style_loader_tag";
+
+ /**
+ * Original hook name: styles_inline_size_limit
+ */
+ public static final String STYLES_INLINE_SIZE_LIMIT = "styles_inline_size_limit";
+
+ /**
+ * Original hook name: stylesheet
+ */
+ public static final String STYLESHEET = "stylesheet";
+
+ /**
+ * Original hook name: stylesheet_directory
+ */
+ public static final String STYLESHEET_DIRECTORY = "stylesheet_directory";
+
+ /**
+ * Original hook name: stylesheet_directory_uri
+ */
+ public static final String STYLESHEET_DIRECTORY_URI = "stylesheet_directory_uri";
+
+ /**
+ * Original hook name: stylesheet_uri
+ */
+ public static final String STYLESHEET_URI = "stylesheet_uri";
+
+ /**
+ * Original hook name: subdirectory_reserved_names
+ */
+ public static final String SUBDIRECTORY_RESERVED_NAMES = "subdirectory_reserved_names";
+
+ /**
+ * Original hook name: submenu_file
+ */
+ public static final String SUBMENU_FILE = "submenu_file";
+
+ /**
+ * Original hook name: submitcomment_box
+ */
+ public static final String SUBMITCOMMENT_BOX = "submitcomment_box";
+
+ /**
+ * Original hook name: submitlink_box
+ */
+ public static final String SUBMITLINK_BOX = "submitlink_box";
+
+ /**
+ * Original hook name: submitpage_box
+ */
+ public static final String SUBMITPAGE_BOX = "submitpage_box";
+
+ /**
+ * Original hook name: submitpost_box
+ */
+ public static final String SUBMITPOST_BOX = "submitpost_box";
+
+ /**
+ * Original hook name: swfupload_post_params
+ */
+ public static final String SWFUPLOAD_POST_PARAMS = "swfupload_post_params";
+
+ /**
+ * Original hook name: swfupload_success_handler
+ */
+ public static final String SWFUPLOAD_SUCCESS_HANDLER = "swfupload_success_handler";
+
+ /**
+ * Original hook name: switch_blog
+ */
+ public static final String SWITCH_BLOG = "switch_blog";
+
+ /**
+ * Original hook name: switch_locale
+ */
+ public static final String SWITCH_LOCALE = "switch_locale";
+
+ /**
+ * Original hook name: switch_theme
+ */
+ public static final String SWITCH_THEME = "switch_theme";
+
+ /**
+ * Original hook name: tables_to_repair
+ */
+ public static final String TABLES_TO_REPAIR = "tables_to_repair";
+
+ /**
+ * Original hook name: tag_archive_meta
+ */
+ public static final String TAG_ARCHIVE_META = "tag_archive_meta";
+
+ /**
+ * Original hook name: tag_cloud_sort
+ */
+ public static final String TAG_CLOUD_SORT = "tag_cloud_sort";
+
+ /**
+ * Original hook name: tag_escape
+ */
+ public static final String TAG_ESCAPE = "tag_escape";
+
+ /**
+ * Original hook name: tag_feed_link
+ */
+ public static final String TAG_FEED_LINK = "tag_feed_link";
+
+ /**
+ * Original hook name: tag_link
+ */
+ public static final String TAG_LINK = "tag_link";
+
+ /**
+ * Original hook name: tag_rewrite_rules
+ */
+ public static final String TAG_REWRITE_RULES = "tag_rewrite_rules";
+
+ /**
+ * Original hook name: tag_row_actions
+ */
+ public static final String TAG_ROW_ACTIONS = "tag_row_actions";
+
+ /**
+ * Original hook name: tag_rows
+ */
+ public static final String TAG_ROWS = "tag_rows";
+
+ /**
+ * Original hook name: tag_template
+ */
+ public static final String TAG_TEMPLATE = "tag_template";
+
+ /**
+ * Original hook name: tags_to_edit
+ */
+ public static final String TAGS_TO_EDIT = "tags_to_edit";
+
+ /**
+ * Original hook name: tagsperpage
+ */
+ public static final String TAGSPERPAGE = "tagsperpage";
+
+ /**
+ * Original hook name: taxonomy_feed_link
+ */
+ public static final String TAXONOMY_FEED_LINK = "taxonomy_feed_link";
+
+ /**
+ * Original hook name: taxonomy_labels_{$taxonomy}
+ */
+ public static final String TAXONOMY_LABELS_TAXONOMY = "taxonomy_labels_{$taxonomy}";
+
+ /**
+ * Original hook name: taxonomy_parent_dropdown_args
+ */
+ public static final String TAXONOMY_PARENT_DROPDOWN_ARGS = "taxonomy_parent_dropdown_args";
+
+ /**
+ * Original hook name: taxonomy_template
+ */
+ public static final String TAXONOMY_TEMPLATE = "taxonomy_template";
+
+ /**
+ * Original hook name: teeny_mce_before_init
+ */
+ public static final String TEENY_MCE_BEFORE_INIT = "teeny_mce_before_init";
+
+ /**
+ * Original hook name: teeny_mce_buttons
+ */
+ public static final String TEENY_MCE_BUTTONS = "teeny_mce_buttons";
+
+ /**
+ * Original hook name: teeny_mce_plugins
+ */
+ public static final String TEENY_MCE_PLUGINS = "teeny_mce_plugins";
+
+ /**
+ * Original hook name: template
+ */
+ public static final String TEMPLATE = "template";
+
+ /**
+ * Original hook name: template_directory
+ */
+ public static final String TEMPLATE_DIRECTORY = "template_directory";
+
+ /**
+ * Original hook name: template_directory_uri
+ */
+ public static final String TEMPLATE_DIRECTORY_URI = "template_directory_uri";
+
+ /**
+ * Original hook name: template_include
+ */
+ public static final String TEMPLATE_INCLUDE = "template_include";
+
+ /**
+ * Original hook name: template_redirect
+ */
+ public static final String TEMPLATE_REDIRECT = "template_redirect";
+
+ /**
+ * Original hook name: term_exists_default_query_args
+ */
+ public static final String TERM_EXISTS_DEFAULT_QUERY_ARGS = "term_exists_default_query_args";
+
+ /**
+ * Original hook name: term_id_filter
+ */
+ public static final String TERM_ID_FILTER = "term_id_filter";
+
+ /**
+ * Original hook name: term_link
+ */
+ public static final String TERM_LINK = "term_link";
+
+ /**
+ * Original hook name: term_links-{$taxonomy}
+ */
+ public static final String TERM_LINKS_TAXONOMY = "term_links-{$taxonomy}";
+
+ /**
+ * Original hook name: term_name
+ */
+ public static final String TERM_NAME = "term_name";
+
+ /**
+ * Original hook name: term_search_min_chars
+ */
+ public static final String TERM_SEARCH_MIN_CHARS = "term_search_min_chars";
+
+ /**
+ * Original hook name: term_updated_messages
+ */
+ public static final String TERM_UPDATED_MESSAGES = "term_updated_messages";
+
+ /**
+ * Original hook name: term_{$field}
+ */
+ public static final String TERM_FIELD = "term_{$field}";
+
+ /**
+ * Original hook name: term_{$field}_rss
+ */
+ public static final String TERM_FIELD_RSS = "term_{$field}_rss";
+
+ /**
+ * Original hook name: terms_clauses
+ */
+ public static final String TERMS_CLAUSES = "terms_clauses";
+
+ /**
+ * Original hook name: terms_pre_query
+ */
+ public static final String TERMS_PRE_QUERY = "terms_pre_query";
+
+ /**
+ * Original hook name: terms_to_edit
+ */
+ public static final String TERMS_TO_EDIT = "terms_to_edit";
+
+ /**
+ * Original hook name: the_author
+ */
+ public static final String THE_AUTHOR = "the_author";
+
+ /**
+ * Original hook name: the_author_email
+ */
+ public static final String THE_AUTHOR_EMAIL = "the_author_email";
+
+ /**
+ * Original hook name: the_author_link
+ */
+ public static final String THE_AUTHOR_LINK = "the_author_link";
+
+ /**
+ * Original hook name: the_author_posts_link
+ */
+ public static final String THE_AUTHOR_POSTS_LINK = "the_author_posts_link";
+
+ /**
+ * Original hook name: the_author_{$field}
+ */
+ public static final String THE_AUTHOR_FIELD = "the_author_{$field}";
+
+ /**
+ * Original hook name: the_category
+ */
+ public static final String THE_CATEGORY = "the_category";
+
+ /**
+ * Original hook name: the_category_list
+ */
+ public static final String THE_CATEGORY_LIST = "the_category_list";
+
+ /**
+ * Original hook name: the_category_rss
+ */
+ public static final String THE_CATEGORY_RSS = "the_category_rss";
+
+ /**
+ * Original hook name: the_comments
+ */
+ public static final String THE_COMMENTS = "the_comments";
+
+ /**
+ * Original hook name: the_content
+ */
+ public static final String THE_CONTENT = "the_content";
+
+ /**
+ * Original hook name: the_content_export
+ */
+ public static final String THE_CONTENT_EXPORT = "the_content_export";
+
+ /**
+ * Original hook name: the_content_feed
+ */
+ public static final String THE_CONTENT_FEED = "the_content_feed";
+
+ /**
+ * Original hook name: the_content_more_link
+ */
+ public static final String THE_CONTENT_MORE_LINK = "the_content_more_link";
+
+ /**
+ * Original hook name: the_content_rss
+ */
+ public static final String THE_CONTENT_RSS = "the_content_rss";
+
+ /**
+ * Original hook name: the_date
+ */
+ public static final String THE_DATE = "the_date";
+
+ /**
+ * Original hook name: the_editor
+ */
+ public static final String THE_EDITOR = "the_editor";
+
+ /**
+ * Original hook name: the_editor_content
+ */
+ public static final String THE_EDITOR_CONTENT = "the_editor_content";
+
+ /**
+ * Original hook name: the_excerpt
+ */
+ public static final String THE_EXCERPT = "the_excerpt";
+
+ /**
+ * Original hook name: the_excerpt_embed
+ */
+ public static final String THE_EXCERPT_EMBED = "the_excerpt_embed";
+
+ /**
+ * Original hook name: the_excerpt_export
+ */
+ public static final String THE_EXCERPT_EXPORT = "the_excerpt_export";
+
+ /**
+ * Original hook name: the_excerpt_rss
+ */
+ public static final String THE_EXCERPT_RSS = "the_excerpt_rss";
+
+ /**
+ * Original hook name: the_feed_link
+ */
+ public static final String THE_FEED_LINK = "the_feed_link";
+
+ /**
+ * Original hook name: the_generator
+ */
+ public static final String THE_GENERATOR = "the_generator";
+
+ /**
+ * Original hook name: the_guid
+ */
+ public static final String THE_GUID = "the_guid";
+
+ /**
+ * Original hook name: the_meta_key
+ */
+ public static final String THE_META_KEY = "the_meta_key";
+
+ /**
+ * Original hook name: the_modified_author
+ */
+ public static final String THE_MODIFIED_AUTHOR = "the_modified_author";
+
+ /**
+ * Original hook name: the_modified_date
+ */
+ public static final String THE_MODIFIED_DATE = "the_modified_date";
+
+ /**
+ * Original hook name: the_modified_time
+ */
+ public static final String THE_MODIFIED_TIME = "the_modified_time";
+
+ /**
+ * Original hook name: the_networks
+ */
+ public static final String THE_NETWORKS = "the_networks";
+
+ /**
+ * Original hook name: the_password_form
+ */
+ public static final String THE_PASSWORD_FORM = "the_password_form";
+
+ /**
+ * Original hook name: the_password_form_incorrect_password
+ */
+ public static final String THE_PASSWORD_FORM_INCORRECT_PASSWORD = "the_password_form_incorrect_password";
+
+ /**
+ * Original hook name: the_permalink
+ */
+ public static final String THE_PERMALINK = "the_permalink";
+
+ /**
+ * Original hook name: the_permalink_rss
+ */
+ public static final String THE_PERMALINK_RSS = "the_permalink_rss";
+
+ /**
+ * Original hook name: the_post
+ */
+ public static final String THE_POST = "the_post";
+
+ /**
+ * Original hook name: the_post_thumbnail_caption
+ */
+ public static final String THE_POST_THUMBNAIL_CAPTION = "the_post_thumbnail_caption";
+
+ /**
+ * Original hook name: the_posts
+ */
+ public static final String THE_POSTS = "the_posts";
+
+ /**
+ * Original hook name: the_posts_pagination_args
+ */
+ public static final String THE_POSTS_PAGINATION_ARGS = "the_posts_pagination_args";
+
+ /**
+ * Original hook name: the_preview
+ */
+ public static final String THE_PREVIEW = "the_preview";
+
+ /**
+ * Original hook name: the_privacy_policy_link
+ */
+ public static final String THE_PRIVACY_POLICY_LINK = "the_privacy_policy_link";
+
+ /**
+ * Original hook name: the_search_query
+ */
+ public static final String THE_SEARCH_QUERY = "the_search_query";
+
+ /**
+ * Original hook name: the_shortlink
+ */
+ public static final String THE_SHORTLINK = "the_shortlink";
+
+ /**
+ * Original hook name: the_sites
+ */
+ public static final String THE_SITES = "the_sites";
+
+ /**
+ * Original hook name: the_tags
+ */
+ public static final String THE_TAGS = "the_tags";
+
+ /**
+ * Original hook name: the_terms
+ */
+ public static final String THE_TERMS = "the_terms";
+
+ /**
+ * Original hook name: the_time
+ */
+ public static final String THE_TIME = "the_time";
+
+ /**
+ * Original hook name: the_title
+ */
+ public static final String THE_TITLE = "the_title";
+
+ /**
+ * Original hook name: the_title_export
+ */
+ public static final String THE_TITLE_EXPORT = "the_title_export";
+
+ /**
+ * Original hook name: the_title_rss
+ */
+ public static final String THE_TITLE_RSS = "the_title_rss";
+
+ /**
+ * Original hook name: the_weekday
+ */
+ public static final String THE_WEEKDAY = "the_weekday";
+
+ /**
+ * Original hook name: the_weekday_date
+ */
+ public static final String THE_WEEKDAY_DATE = "the_weekday_date";
+
+ /**
+ * Original hook name: the_widget
+ */
+ public static final String THE_WIDGET = "the_widget";
+
+ /**
+ * Original hook name: theme_action_links
+ */
+ public static final String THEME_ACTION_LINKS = "theme_action_links";
+
+ /**
+ * Original hook name: theme_action_links_{$stylesheet}
+ */
+ public static final String THEME_ACTION_LINKS_STYLESHEET = "theme_action_links_{$stylesheet}";
+
+ /**
+ * Original hook name: theme_action_links_{$theme_key}
+ */
+ public static final String THEME_ACTION_LINKS_THEME_KEY = "theme_action_links_{$theme_key}";
+
+ /**
+ * Original hook name: theme_auto_update_debug_string
+ */
+ public static final String THEME_AUTO_UPDATE_DEBUG_STRING = "theme_auto_update_debug_string";
+
+ /**
+ * Original hook name: theme_auto_update_setting_html
+ */
+ public static final String THEME_AUTO_UPDATE_SETTING_HTML = "theme_auto_update_setting_html";
+
+ /**
+ * Original hook name: theme_auto_update_setting_template
+ */
+ public static final String THEME_AUTO_UPDATE_SETTING_TEMPLATE = "theme_auto_update_setting_template";
+
+ /**
+ * Original hook name: theme_block_pattern_files
+ */
+ public static final String THEME_BLOCK_PATTERN_FILES = "theme_block_pattern_files";
+
+ /**
+ * Original hook name: theme_file_path
+ */
+ public static final String THEME_FILE_PATH = "theme_file_path";
+
+ /**
+ * Original hook name: theme_file_uri
+ */
+ public static final String THEME_FILE_URI = "theme_file_uri";
+
+ /**
+ * Original hook name: theme_install_action_links
+ */
+ public static final String THEME_INSTALL_ACTION_LINKS = "theme_install_action_links";
+
+ /**
+ * Original hook name: theme_install_actions
+ */
+ public static final String THEME_INSTALL_ACTIONS = "theme_install_actions";
+
+ /**
+ * Original hook name: theme_locale
+ */
+ public static final String THEME_LOCALE = "theme_locale";
+
+ /**
+ * Original hook name: theme_mod_{$name}
+ */
+ public static final String THEME_MOD_NAME = "theme_mod_{$name}";
+
+ /**
+ * Original hook name: theme_page_templates
+ */
+ public static final String THEME_PAGE_TEMPLATES = "theme_page_templates";
+
+ /**
+ * Original hook name: theme_root
+ */
+ public static final String THEME_ROOT = "theme_root";
+
+ /**
+ * Original hook name: theme_root_uri
+ */
+ public static final String THEME_ROOT_URI = "theme_root_uri";
+
+ /**
+ * Original hook name: theme_row_meta
+ */
+ public static final String THEME_ROW_META = "theme_row_meta";
+
+ /**
+ * Original hook name: theme_scandir_exclusions
+ */
+ public static final String THEME_SCANDIR_EXCLUSIONS = "theme_scandir_exclusions";
+
+ /**
+ * Original hook name: theme_templates
+ */
+ public static final String THEME_TEMPLATES = "theme_templates";
+
+ /**
+ * Original hook name: theme_{$post_type}_templates
+ */
+ public static final String THEME_POST_TYPE_TEMPLATES = "theme_{$post_type}_templates";
+
+ /**
+ * Original hook name: themes_api
+ */
+ public static final String THEMES_API = "themes_api";
+
+ /**
+ * Original hook name: themes_api_args
+ */
+ public static final String THEMES_API_ARGS = "themes_api_args";
+
+ /**
+ * Original hook name: themes_api_result
+ */
+ public static final String THEMES_API_RESULT = "themes_api_result";
+
+ /**
+ * Original hook name: themes_auto_update_enabled
+ */
+ public static final String THEMES_AUTO_UPDATE_ENABLED = "themes_auto_update_enabled";
+
+ /**
+ * Original hook name: themes_update_check_locales
+ */
+ public static final String THEMES_UPDATE_CHECK_LOCALES = "themes_update_check_locales";
+
+ /**
+ * Original hook name: thread_comments_depth_max
+ */
+ public static final String THREAD_COMMENTS_DEPTH_MAX = "thread_comments_depth_max";
+
+ /**
+ * Original hook name: thumbnail_filename
+ */
+ public static final String THUMBNAIL_FILENAME = "thumbnail_filename";
+
+ /**
+ * Original hook name: time_formats
+ */
+ public static final String TIME_FORMATS = "time_formats";
+
+ /**
+ * Original hook name: timezone_support
+ */
+ public static final String TIMEZONE_SUPPORT = "timezone_support";
+
+ /**
+ * Original hook name: tiny_mce_before_init
+ */
+ public static final String TINY_MCE_BEFORE_INIT = "tiny_mce_before_init";
+
+ /**
+ * Original hook name: tiny_mce_config_url
+ */
+ public static final String TINY_MCE_CONFIG_URL = "tiny_mce_config_url";
+
+ /**
+ * Original hook name: tiny_mce_plugins
+ */
+ public static final String TINY_MCE_PLUGINS = "tiny_mce_plugins";
+
+ /**
+ * Original hook name: tiny_mce_preload_dialogs
+ */
+ public static final String TINY_MCE_PRELOAD_DIALOGS = "tiny_mce_preload_dialogs";
+
+ /**
+ * Original hook name: tiny_mce_version
+ */
+ public static final String TINY_MCE_VERSION = "tiny_mce_version";
+
+ /**
+ * Original hook name: tinymce_before_init
+ */
+ public static final String TINYMCE_BEFORE_INIT = "tinymce_before_init";
+
+ /**
+ * Original hook name: title_edit_pre
+ */
+ public static final String TITLE_EDIT_PRE = "title_edit_pre";
+
+ /**
+ * Original hook name: title_save_pre
+ */
+ public static final String TITLE_SAVE_PRE = "title_save_pre";
+
+ /**
+ * Original hook name: tool_box
+ */
+ public static final String TOOL_BOX = "tool_box";
+
+ /**
+ * Original hook name: trackback_post
+ */
+ public static final String TRACKBACK_POST = "trackback_post";
+
+ /**
+ * Original hook name: trackback_url
+ */
+ public static final String TRACKBACK_URL = "trackback_url";
+
+ /**
+ * Original hook name: transient_{$transient}
+ */
+ public static final String TRANSIENT_TRANSIENT = "transient_{$transient}";
+
+ /**
+ * Original hook name: transition_comment_status
+ */
+ public static final String TRANSITION_COMMENT_STATUS = "transition_comment_status";
+
+ /**
+ * Original hook name: transition_post_status
+ */
+ public static final String TRANSITION_POST_STATUS = "transition_post_status";
+
+ /**
+ * Original hook name: translation_file_format
+ */
+ public static final String TRANSLATION_FILE_FORMAT = "translation_file_format";
+
+ /**
+ * Original hook name: translations_api
+ */
+ public static final String TRANSLATIONS_API = "translations_api";
+
+ /**
+ * Original hook name: translations_api_result
+ */
+ public static final String TRANSLATIONS_API_RESULT = "translations_api_result";
+
+ /**
+ * Original hook name: trash_comment
+ */
+ public static final String TRASH_COMMENT = "trash_comment";
+
+ /**
+ * Original hook name: trash_post
+ */
+ public static final String TRASH_POST = "trash_post";
+
+ /**
+ * Original hook name: trash_post_comments
+ */
+ public static final String TRASH_POST_COMMENTS = "trash_post_comments";
+
+ /**
+ * Original hook name: trashed_comment
+ */
+ public static final String TRASHED_COMMENT = "trashed_comment";
+
+ /**
+ * Original hook name: trashed_post
+ */
+ public static final String TRASHED_POST = "trashed_post";
+
+ /**
+ * Original hook name: trashed_post_comments
+ */
+ public static final String TRASHED_POST_COMMENTS = "trashed_post_comments";
+
+ /**
+ * Original hook name: twenty_twenty_one_attachment_size
+ */
+ public static final String TWENTY_TWENTY_ONE_ATTACHMENT_SIZE = "twenty_twenty_one_attachment_size";
+
+ /**
+ * Original hook name: twenty_twenty_one_can_show_post_thumbnail
+ */
+ public static final String TWENTY_TWENTY_ONE_CAN_SHOW_POST_THUMBNAIL = "twenty_twenty_one_can_show_post_thumbnail";
+
+ /**
+ * Original hook name: twenty_twenty_one_content_width
+ */
+ public static final String TWENTY_TWENTY_ONE_CONTENT_WIDTH = "twenty_twenty_one_content_width";
+
+ /**
+ * Original hook name: twenty_twenty_one_get_localized_font_family_elements
+ */
+ public static final String TWENTY_TWENTY_ONE_GET_LOCALIZED_FONT_FAMILY_ELEMENTS = "twenty_twenty_one_get_localized_font_family_elements";
+
+ /**
+ * Original hook name: twenty_twenty_one_get_localized_font_family_types
+ */
+ public static final String TWENTY_TWENTY_ONE_GET_LOCALIZED_FONT_FAMILY_TYPES = "twenty_twenty_one_get_localized_font_family_types";
+
+ /**
+ * Original hook name: twenty_twenty_one_social_icons_map
+ */
+ public static final String TWENTY_TWENTY_ONE_SOCIAL_ICONS_MAP = "twenty_twenty_one_social_icons_map";
+
+ /**
+ * Original hook name: twenty_twenty_one_starter_content
+ */
+ public static final String TWENTY_TWENTY_ONE_STARTER_CONTENT = "twenty_twenty_one_starter_content";
+
+ /**
+ * Original hook name: twenty_twenty_one_svg_icons_social
+ */
+ public static final String TWENTY_TWENTY_ONE_SVG_ICONS_SOCIAL = "twenty_twenty_one_svg_icons_social";
+
+ /**
+ * Original hook name: twenty_twenty_one_svg_icons_{$group}
+ */
+ public static final String TWENTY_TWENTY_ONE_SVG_ICONS_GROUP = "twenty_twenty_one_svg_icons_{$group}";
+
+ /**
+ * Original hook name: twentyeleven_attachment_size
+ */
+ public static final String TWENTYELEVEN_ATTACHMENT_SIZE = "twentyeleven_attachment_size";
+
+ /**
+ * Original hook name: twentyeleven_author_bio_avatar_size
+ */
+ public static final String TWENTYELEVEN_AUTHOR_BIO_AVATAR_SIZE = "twentyeleven_author_bio_avatar_size";
+
+ /**
+ * Original hook name: twentyeleven_color_schemes
+ */
+ public static final String TWENTYELEVEN_COLOR_SCHEMES = "twentyeleven_color_schemes";
+
+ /**
+ * Original hook name: twentyeleven_credits
+ */
+ public static final String TWENTYELEVEN_CREDITS = "twentyeleven_credits";
+
+ /**
+ * Original hook name: twentyeleven_default_theme_options
+ */
+ public static final String TWENTYELEVEN_DEFAULT_THEME_OPTIONS = "twentyeleven_default_theme_options";
+
+ /**
+ * Original hook name: twentyeleven_enqueue_color_scheme
+ */
+ public static final String TWENTYELEVEN_ENQUEUE_COLOR_SCHEME = "twentyeleven_enqueue_color_scheme";
+
+ /**
+ * Original hook name: twentyeleven_header_image_height
+ */
+ public static final String TWENTYELEVEN_HEADER_IMAGE_HEIGHT = "twentyeleven_header_image_height";
+
+ /**
+ * Original hook name: twentyeleven_header_image_width
+ */
+ public static final String TWENTYELEVEN_HEADER_IMAGE_WIDTH = "twentyeleven_header_image_width";
+
+ /**
+ * Original hook name: twentyeleven_layout_classes
+ */
+ public static final String TWENTYELEVEN_LAYOUT_CLASSES = "twentyeleven_layout_classes";
+
+ /**
+ * Original hook name: twentyeleven_layouts
+ */
+ public static final String TWENTYELEVEN_LAYOUTS = "twentyeleven_layouts";
+
+ /**
+ * Original hook name: twentyeleven_status_avatar
+ */
+ public static final String TWENTYELEVEN_STATUS_AVATAR = "twentyeleven_status_avatar";
+
+ /**
+ * Original hook name: twentyeleven_theme_options_validate
+ */
+ public static final String TWENTYELEVEN_THEME_OPTIONS_VALIDATE = "twentyeleven_theme_options_validate";
+
+ /**
+ * Original hook name: twentyfifteen_attachment_size
+ */
+ public static final String TWENTYFIFTEEN_ATTACHMENT_SIZE = "twentyfifteen_attachment_size";
+
+ /**
+ * Original hook name: twentyfifteen_author_bio_avatar_size
+ */
+ public static final String TWENTYFIFTEEN_AUTHOR_BIO_AVATAR_SIZE = "twentyfifteen_author_bio_avatar_size";
+
+ /**
+ * Original hook name: twentyfifteen_color_schemes
+ */
+ public static final String TWENTYFIFTEEN_COLOR_SCHEMES = "twentyfifteen_color_schemes";
+
+ /**
+ * Original hook name: twentyfifteen_credits
+ */
+ public static final String TWENTYFIFTEEN_CREDITS = "twentyfifteen_credits";
+
+ /**
+ * Original hook name: twentyfifteen_custom_background_args
+ */
+ public static final String TWENTYFIFTEEN_CUSTOM_BACKGROUND_ARGS = "twentyfifteen_custom_background_args";
+
+ /**
+ * Original hook name: twentyfifteen_custom_header_args
+ */
+ public static final String TWENTYFIFTEEN_CUSTOM_HEADER_ARGS = "twentyfifteen_custom_header_args";
+
+ /**
+ * Original hook name: twentyfourteen_attachment_size
+ */
+ public static final String TWENTYFOURTEEN_ATTACHMENT_SIZE = "twentyfourteen_attachment_size";
+
+ /**
+ * Original hook name: twentyfourteen_credits
+ */
+ public static final String TWENTYFOURTEEN_CREDITS = "twentyfourteen_credits";
+
+ /**
+ * Original hook name: twentyfourteen_custom_background_args
+ */
+ public static final String TWENTYFOURTEEN_CUSTOM_BACKGROUND_ARGS = "twentyfourteen_custom_background_args";
+
+ /**
+ * Original hook name: twentyfourteen_custom_header_args
+ */
+ public static final String TWENTYFOURTEEN_CUSTOM_HEADER_ARGS = "twentyfourteen_custom_header_args";
+
+ /**
+ * Original hook name: twentyfourteen_featured_posts_after
+ */
+ public static final String TWENTYFOURTEEN_FEATURED_POSTS_AFTER = "twentyfourteen_featured_posts_after";
+
+ /**
+ * Original hook name: twentyfourteen_featured_posts_before
+ */
+ public static final String TWENTYFOURTEEN_FEATURED_POSTS_BEFORE = "twentyfourteen_featured_posts_before";
+
+ /**
+ * Original hook name: twentyfourteen_get_featured_posts
+ */
+ public static final String TWENTYFOURTEEN_GET_FEATURED_POSTS = "twentyfourteen_get_featured_posts";
+
+ /**
+ * Original hook name: twentynineteen_attachment_size
+ */
+ public static final String TWENTYNINETEEN_ATTACHMENT_SIZE = "twentynineteen_attachment_size";
+
+ /**
+ * Original hook name: twentynineteen_can_show_post_thumbnail
+ */
+ public static final String TWENTYNINETEEN_CAN_SHOW_POST_THUMBNAIL = "twentynineteen_can_show_post_thumbnail";
+
+ /**
+ * Original hook name: twentynineteen_content_width
+ */
+ public static final String TWENTYNINETEEN_CONTENT_WIDTH = "twentynineteen_content_width";
+
+ /**
+ * Original hook name: twentynineteen_custom_colors_css
+ */
+ public static final String TWENTYNINETEEN_CUSTOM_COLORS_CSS = "twentynineteen_custom_colors_css";
+
+ /**
+ * Original hook name: twentynineteen_custom_colors_lightness
+ */
+ public static final String TWENTYNINETEEN_CUSTOM_COLORS_LIGHTNESS = "twentynineteen_custom_colors_lightness";
+
+ /**
+ * Original hook name: twentynineteen_custom_colors_lightness_hover
+ */
+ public static final String TWENTYNINETEEN_CUSTOM_COLORS_LIGHTNESS_HOVER = "twentynineteen_custom_colors_lightness_hover";
+
+ /**
+ * Original hook name: twentynineteen_custom_colors_lightness_selection
+ */
+ public static final String TWENTYNINETEEN_CUSTOM_COLORS_LIGHTNESS_SELECTION = "twentynineteen_custom_colors_lightness_selection";
+
+ /**
+ * Original hook name: twentynineteen_custom_colors_saturation
+ */
+ public static final String TWENTYNINETEEN_CUSTOM_COLORS_SATURATION = "twentynineteen_custom_colors_saturation";
+
+ /**
+ * Original hook name: twentynineteen_custom_colors_saturation_selection
+ */
+ public static final String TWENTYNINETEEN_CUSTOM_COLORS_SATURATION_SELECTION = "twentynineteen_custom_colors_saturation_selection";
+
+ /**
+ * Original hook name: twentyseventeen_content_width
+ */
+ public static final String TWENTYSEVENTEEN_CONTENT_WIDTH = "twentyseventeen_content_width";
+
+ /**
+ * Original hook name: twentyseventeen_custom_colors_css
+ */
+ public static final String TWENTYSEVENTEEN_CUSTOM_COLORS_CSS = "twentyseventeen_custom_colors_css";
+
+ /**
+ * Original hook name: twentyseventeen_custom_colors_saturation
+ */
+ public static final String TWENTYSEVENTEEN_CUSTOM_COLORS_SATURATION = "twentyseventeen_custom_colors_saturation";
+
+ /**
+ * Original hook name: twentyseventeen_custom_header_args
+ */
+ public static final String TWENTYSEVENTEEN_CUSTOM_HEADER_ARGS = "twentyseventeen_custom_header_args";
+
+ /**
+ * Original hook name: twentyseventeen_front_page_sections
+ */
+ public static final String TWENTYSEVENTEEN_FRONT_PAGE_SECTIONS = "twentyseventeen_front_page_sections";
+
+ /**
+ * Original hook name: twentyseventeen_social_links_icons
+ */
+ public static final String TWENTYSEVENTEEN_SOCIAL_LINKS_ICONS = "twentyseventeen_social_links_icons";
+
+ /**
+ * Original hook name: twentyseventeen_starter_content
+ */
+ public static final String TWENTYSEVENTEEN_STARTER_CONTENT = "twentyseventeen_starter_content";
+
+ /**
+ * Original hook name: twentysixteen_attachment_size
+ */
+ public static final String TWENTYSIXTEEN_ATTACHMENT_SIZE = "twentysixteen_attachment_size";
+
+ /**
+ * Original hook name: twentysixteen_author_avatar_size
+ */
+ public static final String TWENTYSIXTEEN_AUTHOR_AVATAR_SIZE = "twentysixteen_author_avatar_size";
+
+ /**
+ * Original hook name: twentysixteen_author_bio_avatar_size
+ */
+ public static final String TWENTYSIXTEEN_AUTHOR_BIO_AVATAR_SIZE = "twentysixteen_author_bio_avatar_size";
+
+ /**
+ * Original hook name: twentysixteen_color_schemes
+ */
+ public static final String TWENTYSIXTEEN_COLOR_SCHEMES = "twentysixteen_color_schemes";
+
+ /**
+ * Original hook name: twentysixteen_content_width
+ */
+ public static final String TWENTYSIXTEEN_CONTENT_WIDTH = "twentysixteen_content_width";
+
+ /**
+ * Original hook name: twentysixteen_credits
+ */
+ public static final String TWENTYSIXTEEN_CREDITS = "twentysixteen_credits";
+
+ /**
+ * Original hook name: twentysixteen_custom_background_args
+ */
+ public static final String TWENTYSIXTEEN_CUSTOM_BACKGROUND_ARGS = "twentysixteen_custom_background_args";
+
+ /**
+ * Original hook name: twentysixteen_custom_header_args
+ */
+ public static final String TWENTYSIXTEEN_CUSTOM_HEADER_ARGS = "twentysixteen_custom_header_args";
+
+ /**
+ * Original hook name: twentysixteen_custom_header_sizes
+ */
+ public static final String TWENTYSIXTEEN_CUSTOM_HEADER_SIZES = "twentysixteen_custom_header_sizes";
+
+ /**
+ * Original hook name: twentyten_attachment_height
+ */
+ public static final String TWENTYTEN_ATTACHMENT_HEIGHT = "twentyten_attachment_height";
+
+ /**
+ * Original hook name: twentyten_attachment_size
+ */
+ public static final String TWENTYTEN_ATTACHMENT_SIZE = "twentyten_attachment_size";
+
+ /**
+ * Original hook name: twentyten_author_bio_avatar_size
+ */
+ public static final String TWENTYTEN_AUTHOR_BIO_AVATAR_SIZE = "twentyten_author_bio_avatar_size";
+
+ /**
+ * Original hook name: twentyten_credits
+ */
+ public static final String TWENTYTEN_CREDITS = "twentyten_credits";
+
+ /**
+ * Original hook name: twentyten_header_image_height
+ */
+ public static final String TWENTYTEN_HEADER_IMAGE_HEIGHT = "twentyten_header_image_height";
+
+ /**
+ * Original hook name: twentyten_header_image_width
+ */
+ public static final String TWENTYTEN_HEADER_IMAGE_WIDTH = "twentyten_header_image_width";
+
+ /**
+ * Original hook name: twentythirteen_attachment_size
+ */
+ public static final String TWENTYTHIRTEEN_ATTACHMENT_SIZE = "twentythirteen_attachment_size";
+
+ /**
+ * Original hook name: twentythirteen_author_bio_avatar_size
+ */
+ public static final String TWENTYTHIRTEEN_AUTHOR_BIO_AVATAR_SIZE = "twentythirteen_author_bio_avatar_size";
+
+ /**
+ * Original hook name: twentythirteen_credits
+ */
+ public static final String TWENTYTHIRTEEN_CREDITS = "twentythirteen_credits";
+
+ /**
+ * Original hook name: twentytwelve_attachment_size
+ */
+ public static final String TWENTYTWELVE_ATTACHMENT_SIZE = "twentytwelve_attachment_size";
+
+ /**
+ * Original hook name: twentytwelve_author_bio_avatar_size
+ */
+ public static final String TWENTYTWELVE_AUTHOR_BIO_AVATAR_SIZE = "twentytwelve_author_bio_avatar_size";
+
+ /**
+ * Original hook name: twentytwelve_credits
+ */
+ public static final String TWENTYTWELVE_CREDITS = "twentytwelve_credits";
+
+ /**
+ * Original hook name: twentytwelve_status_avatar
+ */
+ public static final String TWENTYTWELVE_STATUS_AVATAR = "twentytwelve_status_avatar";
+
+ /**
+ * Original hook name: twentytwenty_customize_opacity_range
+ */
+ public static final String TWENTYTWENTY_CUSTOMIZE_OPACITY_RANGE = "twentytwenty_customize_opacity_range";
+
+ /**
+ * Original hook name: twentytwenty_disallowed_post_types_for_meta_output
+ */
+ public static final String TWENTYTWENTY_DISALLOWED_POST_TYPES_FOR_META_OUTPUT = "twentytwenty_disallowed_post_types_for_meta_output";
+
+ /**
+ * Original hook name: twentytwenty_end_of_post_meta_list
+ */
+ public static final String TWENTYTWENTY_END_OF_POST_META_LIST = "twentytwenty_end_of_post_meta_list";
+
+ /**
+ * Original hook name: twentytwenty_get_elements_array
+ */
+ public static final String TWENTYTWENTY_GET_ELEMENTS_ARRAY = "twentytwenty_get_elements_array";
+
+ /**
+ * Original hook name: twentytwenty_get_localized_font_family_elements
+ */
+ public static final String TWENTYTWENTY_GET_LOCALIZED_FONT_FAMILY_ELEMENTS = "twentytwenty_get_localized_font_family_elements";
+
+ /**
+ * Original hook name: twentytwenty_get_localized_font_family_types
+ */
+ public static final String TWENTYTWENTY_GET_LOCALIZED_FONT_FAMILY_TYPES = "twentytwenty_get_localized_font_family_types";
+
+ /**
+ * Original hook name: twentytwenty_get_the_archive_title_regex
+ */
+ public static final String TWENTYTWENTY_GET_THE_ARCHIVE_TITLE_REGEX = "twentytwenty_get_the_archive_title_regex";
+
+ /**
+ * Original hook name: twentytwenty_post_meta_location_single_bottom
+ */
+ public static final String TWENTYTWENTY_POST_META_LOCATION_SINGLE_BOTTOM = "twentytwenty_post_meta_location_single_bottom";
+
+ /**
+ * Original hook name: twentytwenty_post_meta_location_single_top
+ */
+ public static final String TWENTYTWENTY_POST_META_LOCATION_SINGLE_TOP = "twentytwenty_post_meta_location_single_top";
+
+ /**
+ * Original hook name: twentytwenty_show_categories_in_entry_header
+ */
+ public static final String TWENTYTWENTY_SHOW_CATEGORIES_IN_ENTRY_HEADER = "twentytwenty_show_categories_in_entry_header";
+
+ /**
+ * Original hook name: twentytwenty_site_description
+ */
+ public static final String TWENTYTWENTY_SITE_DESCRIPTION = "twentytwenty_site_description";
+
+ /**
+ * Original hook name: twentytwenty_site_logo
+ */
+ public static final String TWENTYTWENTY_SITE_LOGO = "twentytwenty_site_logo";
+
+ /**
+ * Original hook name: twentytwenty_site_logo_args
+ */
+ public static final String TWENTYTWENTY_SITE_LOGO_ARGS = "twentytwenty_site_logo_args";
+
+ /**
+ * Original hook name: twentytwenty_social_icons_map
+ */
+ public static final String TWENTYTWENTY_SOCIAL_ICONS_MAP = "twentytwenty_social_icons_map";
+
+ /**
+ * Original hook name: twentytwenty_start_of_post_meta_list
+ */
+ public static final String TWENTYTWENTY_START_OF_POST_META_LIST = "twentytwenty_start_of_post_meta_list";
+
+ /**
+ * Original hook name: twentytwenty_starter_content
+ */
+ public static final String TWENTYTWENTY_STARTER_CONTENT = "twentytwenty_starter_content";
+
+ /**
+ * Original hook name: twentytwenty_svg_icon_color
+ */
+ public static final String TWENTYTWENTY_SVG_ICON_COLOR = "twentytwenty_svg_icon_color";
+
+ /**
+ * Original hook name: twentytwenty_svg_icons_social
+ */
+ public static final String TWENTYTWENTY_SVG_ICONS_SOCIAL = "twentytwenty_svg_icons_social";
+
+ /**
+ * Original hook name: twentytwenty_svg_icons_{$group}
+ */
+ public static final String TWENTYTWENTY_SVG_ICONS_GROUP = "twentytwenty_svg_icons_{$group}";
+
+ /**
+ * Original hook name: twentytwenty_toggle_duration
+ */
+ public static final String TWENTYTWENTY_TOGGLE_DURATION = "twentytwenty_toggle_duration";
+
+ /**
+ * Original hook name: twentytwentyone_html_classes
+ */
+ public static final String TWENTYTWENTYONE_HTML_CLASSES = "twentytwentyone_html_classes";
+
+ /**
+ * Original hook name: twentytwentytwo_block_pattern_categories
+ */
+ public static final String TWENTYTWENTYTWO_BLOCK_PATTERN_CATEGORIES = "twentytwentytwo_block_pattern_categories";
+
+ /**
+ * Original hook name: twentytwentytwo_block_patterns
+ */
+ public static final String TWENTYTWENTYTWO_BLOCK_PATTERNS = "twentytwentytwo_block_patterns";
+
+ /**
+ * Original hook name: type_url_form_media
+ */
+ public static final String TYPE_URL_FORM_MEDIA = "type_url_form_media";
+
+ /**
+ * Original hook name: unarchive_blog
+ */
+ public static final String UNARCHIVE_BLOG = "unarchive_blog";
+
+ /**
+ * Original hook name: uninstall_{$file}
+ */
+ public static final String UNINSTALL_FILE = "uninstall_{$file}";
+
+ /**
+ * Original hook name: unload_textdomain
+ */
+ public static final String UNLOAD_TEXTDOMAIN = "unload_textdomain";
+
+ /**
+ * Original hook name: unmature_blog
+ */
+ public static final String UNMATURE_BLOG = "unmature_blog";
+
+ /**
+ * Original hook name: unregister_setting
+ */
+ public static final String UNREGISTER_SETTING = "unregister_setting";
+
+ /**
+ * Original hook name: unregistered_post_type
+ */
+ public static final String UNREGISTERED_POST_TYPE = "unregistered_post_type";
+
+ /**
+ * Original hook name: unregistered_taxonomy
+ */
+ public static final String UNREGISTERED_TAXONOMY = "unregistered_taxonomy";
+
+ /**
+ * Original hook name: unregistered_taxonomy_for_object_type
+ */
+ public static final String UNREGISTERED_TAXONOMY_FOR_OBJECT_TYPE = "unregistered_taxonomy_for_object_type";
+
+ /**
+ * Original hook name: unspam_comment
+ */
+ public static final String UNSPAM_COMMENT = "unspam_comment";
+
+ /**
+ * Original hook name: unspammed_comment
+ */
+ public static final String UNSPAMMED_COMMENT = "unspammed_comment";
+
+ /**
+ * Original hook name: untrash_comment
+ */
+ public static final String UNTRASH_COMMENT = "untrash_comment";
+
+ /**
+ * Original hook name: untrash_post
+ */
+ public static final String UNTRASH_POST = "untrash_post";
+
+ /**
+ * Original hook name: untrash_post_comments
+ */
+ public static final String UNTRASH_POST_COMMENTS = "untrash_post_comments";
+
+ /**
+ * Original hook name: untrashed_comment
+ */
+ public static final String UNTRASHED_COMMENT = "untrashed_comment";
+
+ /**
+ * Original hook name: untrashed_post
+ */
+ public static final String UNTRASHED_POST = "untrashed_post";
+
+ /**
+ * Original hook name: untrashed_post_comments
+ */
+ public static final String UNTRASHED_POST_COMMENTS = "untrashed_post_comments";
+
+ /**
+ * Original hook name: unzip_file
+ */
+ public static final String UNZIP_FILE = "unzip_file";
+
+ /**
+ * Original hook name: unzip_file_use_ziparchive
+ */
+ public static final String UNZIP_FILE_USE_ZIPARCHIVE = "unzip_file_use_ziparchive";
+
+ /**
+ * Original hook name: update-core-custom_{$action}
+ */
+ public static final String UPDATE_CORE_CUSTOM_ACTION = "update-core-custom_{$action}";
+
+ /**
+ * Original hook name: update-custom_{$action}
+ */
+ public static final String UPDATE_CUSTOM_ACTION = "update-custom_{$action}";
+
+ /**
+ * Original hook name: update_attached_file
+ */
+ public static final String UPDATE_ATTACHED_FILE = "update_attached_file";
+
+ /**
+ * Original hook name: update_blog_public
+ */
+ public static final String UPDATE_BLOG_PUBLIC = "update_blog_public";
+
+ /**
+ * Original hook name: update_bulk_plugins_complete_actions
+ */
+ public static final String UPDATE_BULK_PLUGINS_COMPLETE_ACTIONS = "update_bulk_plugins_complete_actions";
+
+ /**
+ * Original hook name: update_bulk_theme_complete_actions
+ */
+ public static final String UPDATE_BULK_THEME_COMPLETE_ACTIONS = "update_bulk_theme_complete_actions";
+
+ /**
+ * Original hook name: update_custom_css_data
+ */
+ public static final String UPDATE_CUSTOM_CSS_DATA = "update_custom_css_data";
+
+ /**
+ * Original hook name: update_feedback
+ */
+ public static final String UPDATE_FEEDBACK = "update_feedback";
+
+ /**
+ * Original hook name: update_footer
+ */
+ public static final String UPDATE_FOOTER = "update_footer";
+
+ /**
+ * Original hook name: update_option
+ */
+ public static final String UPDATE_OPTION = "update_option";
+
+ /**
+ * Original hook name: update_option_{$option_name}
+ */
+ public static final String UPDATE_OPTION_OPTION_NAME = "update_option_{$option_name}";
+
+ /**
+ * Original hook name: update_option_{$option}
+ */
+ public static final String UPDATE_OPTION_OPTION = "update_option_{$option}";
+
+ /**
+ * Original hook name: update_plugin_complete_actions
+ */
+ public static final String UPDATE_PLUGIN_COMPLETE_ACTIONS = "update_plugin_complete_actions";
+
+ /**
+ * Original hook name: update_plugins_{$hostname}
+ */
+ public static final String UPDATE_PLUGINS_HOSTNAME = "update_plugins_{$hostname}";
+
+ /**
+ * Original hook name: update_post_term_count_statuses
+ */
+ public static final String UPDATE_POST_TERM_COUNT_STATUSES = "update_post_term_count_statuses";
+
+ /**
+ * Original hook name: update_postmeta
+ */
+ public static final String UPDATE_POSTMETA = "update_postmeta";
+
+ /**
+ * Original hook name: update_right_now_text
+ */
+ public static final String UPDATE_RIGHT_NOW_TEXT = "update_right_now_text";
+
+ /**
+ * Original hook name: update_site_option
+ */
+ public static final String UPDATE_SITE_OPTION = "update_site_option";
+
+ /**
+ * Original hook name: update_site_option_{$key}
+ */
+ public static final String UPDATE_SITE_OPTION_KEY = "update_site_option_{$key}";
+
+ /**
+ * Original hook name: update_site_option_{$option}
+ */
+ public static final String UPDATE_SITE_OPTION_OPTION = "update_site_option_{$option}";
+
+ /**
+ * Original hook name: update_term_count
+ */
+ public static final String UPDATE_TERM_COUNT = "update_term_count";
+
+ /**
+ * Original hook name: update_theme_complete_actions
+ */
+ public static final String UPDATE_THEME_COMPLETE_ACTIONS = "update_theme_complete_actions";
+
+ /**
+ * Original hook name: update_themes_{$hostname}
+ */
+ public static final String UPDATE_THEMES_HOSTNAME = "update_themes_{$hostname}";
+
+ /**
+ * Original hook name: update_translations_complete_actions
+ */
+ public static final String UPDATE_TRANSLATIONS_COMPLETE_ACTIONS = "update_translations_complete_actions";
+
+ /**
+ * Original hook name: update_user_query
+ */
+ public static final String UPDATE_USER_QUERY = "update_user_query";
+
+ /**
+ * Original hook name: update_usermeta
+ */
+ public static final String UPDATE_USERMETA = "update_usermeta";
+
+ /**
+ * Original hook name: update_welcome_email
+ */
+ public static final String UPDATE_WELCOME_EMAIL = "update_welcome_email";
+
+ /**
+ * Original hook name: update_welcome_subject
+ */
+ public static final String UPDATE_WELCOME_SUBJECT = "update_welcome_subject";
+
+ /**
+ * Original hook name: update_welcome_user_email
+ */
+ public static final String UPDATE_WELCOME_USER_EMAIL = "update_welcome_user_email";
+
+ /**
+ * Original hook name: update_welcome_user_subject
+ */
+ public static final String UPDATE_WELCOME_USER_SUBJECT = "update_welcome_user_subject";
+
+ /**
+ * Original hook name: update_wpmu_options
+ */
+ public static final String UPDATE_WPMU_OPTIONS = "update_wpmu_options";
+
+ /**
+ * Original hook name: update_{$meta_type}_meta
+ */
+ public static final String UPDATE_META_TYPE_META = "update_{$meta_type}_meta";
+
+ /**
+ * Original hook name: update_{$meta_type}_metadata
+ */
+ public static final String UPDATE_META_TYPE_METADATA = "update_{$meta_type}_metadata";
+
+ /**
+ * Original hook name: update_{$meta_type}_metadata_by_mid
+ */
+ public static final String UPDATE_META_TYPE_METADATA_BY_MID = "update_{$meta_type}_metadata_by_mid";
+
+ /**
+ * Original hook name: update_{$meta_type}_metadata_cache
+ */
+ public static final String UPDATE_META_TYPE_METADATA_CACHE = "update_{$meta_type}_metadata_cache";
+
+ /**
+ * Original hook name: updated_option
+ */
+ public static final String UPDATED_OPTION = "updated_option";
+
+ /**
+ * Original hook name: updated_postmeta
+ */
+ public static final String UPDATED_POSTMETA = "updated_postmeta";
+
+ /**
+ * Original hook name: updated_usermeta
+ */
+ public static final String UPDATED_USERMETA = "updated_usermeta";
+
+ /**
+ * Original hook name: updated_{$meta_type}_meta
+ */
+ public static final String UPDATED_META_TYPE_META = "updated_{$meta_type}_meta";
+
+ /**
+ * Original hook name: upgrader_clear_destination
+ */
+ public static final String UPGRADER_CLEAR_DESTINATION = "upgrader_clear_destination";
+
+ /**
+ * Original hook name: upgrader_install_package_result
+ */
+ public static final String UPGRADER_INSTALL_PACKAGE_RESULT = "upgrader_install_package_result";
+
+ /**
+ * Original hook name: upgrader_overwrote_package
+ */
+ public static final String UPGRADER_OVERWROTE_PACKAGE = "upgrader_overwrote_package";
+
+ /**
+ * Original hook name: upgrader_package_options
+ */
+ public static final String UPGRADER_PACKAGE_OPTIONS = "upgrader_package_options";
+
+ /**
+ * Original hook name: upgrader_post_install
+ */
+ public static final String UPGRADER_POST_INSTALL = "upgrader_post_install";
+
+ /**
+ * Original hook name: upgrader_pre_download
+ */
+ public static final String UPGRADER_PRE_DOWNLOAD = "upgrader_pre_download";
+
+ /**
+ * Original hook name: upgrader_pre_install
+ */
+ public static final String UPGRADER_PRE_INSTALL = "upgrader_pre_install";
+
+ /**
+ * Original hook name: upgrader_process_complete
+ */
+ public static final String UPGRADER_PROCESS_COMPLETE = "upgrader_process_complete";
+
+ /**
+ * Original hook name: upgrader_source_selection
+ */
+ public static final String UPGRADER_SOURCE_SELECTION = "upgrader_source_selection";
+
+ /**
+ * Original hook name: upload_dir
+ */
+ public static final String UPLOAD_DIR = "upload_dir";
+
+ /**
+ * Original hook name: upload_file_glob
+ */
+ public static final String UPLOAD_FILE_GLOB = "upload_file_glob";
+
+ /**
+ * Original hook name: upload_files_{$tab}
+ */
+ public static final String UPLOAD_FILES_TAB = "upload_files_{$tab}";
+
+ /**
+ * Original hook name: upload_mimes
+ */
+ public static final String UPLOAD_MIMES = "upload_mimes";
+
+ /**
+ * Original hook name: upload_per_page
+ */
+ public static final String UPLOAD_PER_PAGE = "upload_per_page";
+
+ /**
+ * Original hook name: upload_post_params
+ */
+ public static final String UPLOAD_POST_PARAMS = "upload_post_params";
+
+ /**
+ * Original hook name: upload_size_limit
+ */
+ public static final String UPLOAD_SIZE_LIMIT = "upload_size_limit";
+
+ /**
+ * Original hook name: upload_ui_over_quota
+ */
+ public static final String UPLOAD_UI_OVER_QUOTA = "upload_ui_over_quota";
+
+ /**
+ * Original hook name: uploading_iframe_src
+ */
+ public static final String UPLOADING_IFRAME_SRC = "uploading_iframe_src";
+
+ /**
+ * Original hook name: url_to_postid
+ */
+ public static final String URL_TO_POSTID = "url_to_postid";
+
+ /**
+ * Original hook name: use_block_editor_for_post
+ */
+ public static final String USE_BLOCK_EDITOR_FOR_POST = "use_block_editor_for_post";
+
+ /**
+ * Original hook name: use_block_editor_for_post_type
+ */
+ public static final String USE_BLOCK_EDITOR_FOR_POST_TYPE = "use_block_editor_for_post_type";
+
+ /**
+ * Original hook name: use_curl_transport
+ */
+ public static final String USE_CURL_TRANSPORT = "use_curl_transport";
+
+ /**
+ * Original hook name: use_default_gallery_style
+ */
+ public static final String USE_DEFAULT_GALLERY_STYLE = "use_default_gallery_style";
+
+ /**
+ * Original hook name: use_fopen_transport
+ */
+ public static final String USE_FOPEN_TRANSPORT = "use_fopen_transport";
+
+ /**
+ * Original hook name: use_fsockopen_transport
+ */
+ public static final String USE_FSOCKOPEN_TRANSPORT = "use_fsockopen_transport";
+
+ /**
+ * Original hook name: use_google_chrome_frame
+ */
+ public static final String USE_GOOGLE_CHROME_FRAME = "use_google_chrome_frame";
+
+ /**
+ * Original hook name: use_http_extension_transport
+ */
+ public static final String USE_HTTP_EXTENSION_TRANSPORT = "use_http_extension_transport";
+
+ /**
+ * Original hook name: use_streams_transport
+ */
+ public static final String USE_STREAMS_TRANSPORT = "use_streams_transport";
+
+ /**
+ * Original hook name: use_widgets_block_editor
+ */
+ public static final String USE_WIDGETS_BLOCK_EDITOR = "use_widgets_block_editor";
+
+ /**
+ * Original hook name: user_admin_menu
+ */
+ public static final String USER_ADMIN_MENU_2 = "user_admin_menu";
+
+ /**
+ * Original hook name: user_admin_notices
+ */
+ public static final String USER_ADMIN_NOTICES = "user_admin_notices";
+
+ /**
+ * Original hook name: user_admin_url
+ */
+ public static final String USER_ADMIN_URL = "user_admin_url";
+
+ /**
+ * Original hook name: user_aim_label
+ */
+ public static final String USER_AIM_LABEL = "user_aim_label";
+
+ /**
+ * Original hook name: user_can_richedit
+ */
+ public static final String USER_CAN_RICHEDIT = "user_can_richedit";
+
+ /**
+ * Original hook name: user_confirmed_action_email_content
+ */
+ public static final String USER_CONFIRMED_ACTION_EMAIL_CONTENT = "user_confirmed_action_email_content";
+
+ /**
+ * Original hook name: user_contactmethods
+ */
+ public static final String USER_CONTACTMETHODS = "user_contactmethods";
+
+ /**
+ * Original hook name: user_dashboard_url
+ */
+ public static final String USER_DASHBOARD_URL = "user_dashboard_url";
+
+ /**
+ * Original hook name: user_edit_form_tag
+ */
+ public static final String USER_EDIT_FORM_TAG = "user_edit_form_tag";
+
+ /**
+ * Original hook name: user_erasure_complete_email_headers
+ */
+ public static final String USER_ERASURE_COMPLETE_EMAIL_HEADERS = "user_erasure_complete_email_headers";
+
+ /**
+ * Original hook name: user_erasure_complete_email_subject
+ */
+ public static final String USER_ERASURE_COMPLETE_EMAIL_SUBJECT = "user_erasure_complete_email_subject";
+
+ /**
+ * Original hook name: user_erasure_fulfillment_email_content
+ */
+ public static final String USER_ERASURE_FULFILLMENT_EMAIL_CONTENT = "user_erasure_fulfillment_email_content";
+
+ /**
+ * Original hook name: user_erasure_fulfillment_email_headers
+ */
+ public static final String USER_ERASURE_FULFILLMENT_EMAIL_HEADERS = "user_erasure_fulfillment_email_headers";
+
+ /**
+ * Original hook name: user_erasure_fulfillment_email_subject
+ */
+ public static final String USER_ERASURE_FULFILLMENT_EMAIL_SUBJECT = "user_erasure_fulfillment_email_subject";
+
+ /**
+ * Original hook name: user_erasure_fulfillment_email_to
+ */
+ public static final String USER_ERASURE_FULFILLMENT_EMAIL_TO = "user_erasure_fulfillment_email_to";
+
+ /**
+ * Original hook name: user_has_cap
+ */
+ public static final String USER_HAS_CAP = "user_has_cap";
+
+ /**
+ * Original hook name: user_jabber_label
+ */
+ public static final String USER_JABBER_LABEL = "user_jabber_label";
+
+ /**
+ * Original hook name: user_new_form
+ */
+ public static final String USER_NEW_FORM = "user_new_form";
+
+ /**
+ * Original hook name: user_new_form_tag
+ */
+ public static final String USER_NEW_FORM_TAG = "user_new_form_tag";
+
+ /**
+ * Original hook name: user_profile_picture_description
+ */
+ public static final String USER_PROFILE_PICTURE_DESCRIPTION = "user_profile_picture_description";
+
+ /**
+ * Original hook name: user_profile_update_errors
+ */
+ public static final String USER_PROFILE_UPDATE_ERRORS = "user_profile_update_errors";
+
+ /**
+ * Original hook name: user_register
+ */
+ public static final String USER_REGISTER = "user_register";
+
+ /**
+ * Original hook name: user_registration_email
+ */
+ public static final String USER_REGISTRATION_EMAIL = "user_registration_email";
+
+ /**
+ * Original hook name: user_request_action_confirmed
+ */
+ public static final String USER_REQUEST_ACTION_CONFIRMED = "user_request_action_confirmed";
+
+ /**
+ * Original hook name: user_request_action_confirmed_message
+ */
+ public static final String USER_REQUEST_ACTION_CONFIRMED_MESSAGE = "user_request_action_confirmed_message";
+
+ /**
+ * Original hook name: user_request_action_description
+ */
+ public static final String USER_REQUEST_ACTION_DESCRIPTION = "user_request_action_description";
+
+ /**
+ * Original hook name: user_request_action_email_content
+ */
+ public static final String USER_REQUEST_ACTION_EMAIL_CONTENT = "user_request_action_email_content";
+
+ /**
+ * Original hook name: user_request_action_email_headers
+ */
+ public static final String USER_REQUEST_ACTION_EMAIL_HEADERS = "user_request_action_email_headers";
+
+ /**
+ * Original hook name: user_request_action_email_subject
+ */
+ public static final String USER_REQUEST_ACTION_EMAIL_SUBJECT = "user_request_action_email_subject";
+
+ /**
+ * Original hook name: user_request_confirmed_email_content
+ */
+ public static final String USER_REQUEST_CONFIRMED_EMAIL_CONTENT = "user_request_confirmed_email_content";
+
+ /**
+ * Original hook name: user_request_confirmed_email_headers
+ */
+ public static final String USER_REQUEST_CONFIRMED_EMAIL_HEADERS = "user_request_confirmed_email_headers";
+
+ /**
+ * Original hook name: user_request_confirmed_email_subject
+ */
+ public static final String USER_REQUEST_CONFIRMED_EMAIL_SUBJECT = "user_request_confirmed_email_subject";
+
+ /**
+ * Original hook name: user_request_confirmed_email_to
+ */
+ public static final String USER_REQUEST_CONFIRMED_EMAIL_TO = "user_request_confirmed_email_to";
+
+ /**
+ * Original hook name: user_request_key_expiration
+ */
+ public static final String USER_REQUEST_KEY_EXPIRATION = "user_request_key_expiration";
+
+ /**
+ * Original hook name: user_row_actions
+ */
+ public static final String USER_ROW_ACTIONS = "user_row_actions";
+
+ /**
+ * Original hook name: user_search_columns
+ */
+ public static final String USER_SEARCH_COLUMNS = "user_search_columns";
+
+ /**
+ * Original hook name: user_trailingslashit
+ */
+ public static final String USER_TRAILINGSLASHIT = "user_trailingslashit";
+
+ /**
+ * Original hook name: user_yim_label
+ */
+ public static final String USER_YIM_LABEL = "user_yim_label";
+
+ /**
+ * Original hook name: user_{$field}
+ */
+ public static final String USER_FIELD = "user_{$field}";
+
+ /**
+ * Original hook name: user_{$name}_label
+ */
+ public static final String USER_NAME_LABEL = "user_{$name}_label";
+
+ /**
+ * Original hook name: username_exists
+ */
+ public static final String USERNAME_EXISTS = "username_exists";
+
+ /**
+ * Original hook name: users_have_additional_content
+ */
+ public static final String USERS_HAVE_ADDITIONAL_CONTENT = "users_have_additional_content";
+
+ /**
+ * Original hook name: users_list_table_query_args
+ */
+ public static final String USERS_LIST_TABLE_QUERY_ARGS = "users_list_table_query_args";
+
+ /**
+ * Original hook name: users_pre_query
+ */
+ public static final String USERS_PRE_QUERY = "users_pre_query";
+
+ /**
+ * Original hook name: validate_current_theme
+ */
+ public static final String VALIDATE_CURRENT_THEME = "validate_current_theme";
+
+ /**
+ * Original hook name: validate_password_reset
+ */
+ public static final String VALIDATE_PASSWORD_RESET = "validate_password_reset";
+
+ /**
+ * Original hook name: validate_plugin_requirements
+ */
+ public static final String VALIDATE_PLUGIN_REQUIREMENTS = "validate_plugin_requirements";
+
+ /**
+ * Original hook name: validate_theme_requirements
+ */
+ public static final String VALIDATE_THEME_REQUIREMENTS = "validate_theme_requirements";
+
+ /**
+ * Original hook name: validate_username
+ */
+ public static final String VALIDATE_USERNAME = "validate_username";
+
+ /**
+ * Original hook name: video_send_to_editor_url
+ */
+ public static final String VIDEO_SEND_TO_EDITOR_URL = "video_send_to_editor_url";
+
+ /**
+ * Original hook name: video_upload_iframe_src
+ */
+ public static final String VIDEO_UPLOAD_IFRAME_SRC = "video_upload_iframe_src";
+
+ /**
+ * Original hook name: view_mode_post_types
+ */
+ public static final String VIEW_MODE_POST_TYPES = "view_mode_post_types";
+
+ /**
+ * Original hook name: views_{$screen->id}
+ */
+ public static final String VIEWS_SCREEN_ID = "views_{$screen->id}";
+
+ /**
+ * Original hook name: views_{$this->screen->id}
+ */
+ public static final String VIEWS_THIS_SCREEN_ID = "views_{$this->screen->id}";
+
+ /**
+ * Original hook name: visual_editor
+ */
+ public static final String VISUAL_EDITOR = "visual_editor";
+
+ /**
+ * Original hook name: walker_nav_menu_start_el
+ */
+ public static final String WALKER_NAV_MENU_START_EL = "walker_nav_menu_start_el";
+
+ /**
+ * Original hook name: welcome_panel
+ */
+ public static final String WELCOME_PANEL = "welcome_panel";
+
+ /**
+ * Original hook name: whitelist_options
+ */
+ public static final String WHITELIST_OPTIONS = "whitelist_options";
+
+ /**
+ * Original hook name: widget_archives_args
+ */
+ public static final String WIDGET_ARCHIVES_ARGS = "widget_archives_args";
+
+ /**
+ * Original hook name: widget_archives_dropdown_args
+ */
+ public static final String WIDGET_ARCHIVES_DROPDOWN_ARGS = "widget_archives_dropdown_args";
+
+ /**
+ * Original hook name: widget_block_content
+ */
+ public static final String WIDGET_BLOCK_CONTENT = "widget_block_content";
+
+ /**
+ * Original hook name: widget_block_dynamic_classname
+ */
+ public static final String WIDGET_BLOCK_DYNAMIC_CLASSNAME = "widget_block_dynamic_classname";
+
+ /**
+ * Original hook name: widget_categories_args
+ */
+ public static final String WIDGET_CATEGORIES_ARGS = "widget_categories_args";
+
+ /**
+ * Original hook name: widget_categories_dropdown_args
+ */
+ public static final String WIDGET_CATEGORIES_DROPDOWN_ARGS = "widget_categories_dropdown_args";
+
+ /**
+ * Original hook name: widget_comments_args
+ */
+ public static final String WIDGET_COMMENTS_ARGS = "widget_comments_args";
+
+ /**
+ * Original hook name: widget_custom_html_content
+ */
+ public static final String WIDGET_CUSTOM_HTML_CONTENT = "widget_custom_html_content";
+
+ /**
+ * Original hook name: widget_customizer_setting_args
+ */
+ public static final String WIDGET_CUSTOMIZER_SETTING_ARGS = "widget_customizer_setting_args";
+
+ /**
+ * Original hook name: widget_display_callback
+ */
+ public static final String WIDGET_DISPLAY_CALLBACK = "widget_display_callback";
+
+ /**
+ * Original hook name: widget_form_callback
+ */
+ public static final String WIDGET_FORM_CALLBACK = "widget_form_callback";
+
+ /**
+ * Original hook name: widget_links_args
+ */
+ public static final String WIDGET_LINKS_ARGS = "widget_links_args";
+
+ /**
+ * Original hook name: widget_meta_poweredby
+ */
+ public static final String WIDGET_META_POWEREDBY = "widget_meta_poweredby";
+
+ /**
+ * Original hook name: widget_nav_menu_args
+ */
+ public static final String WIDGET_NAV_MENU_ARGS = "widget_nav_menu_args";
+
+ /**
+ * Original hook name: widget_pages_args
+ */
+ public static final String WIDGET_PAGES_ARGS = "widget_pages_args";
+
+ /**
+ * Original hook name: widget_posts_args
+ */
+ public static final String WIDGET_POSTS_ARGS = "widget_posts_args";
+
+ /**
+ * Original hook name: widget_tag_cloud_args
+ */
+ public static final String WIDGET_TAG_CLOUD_ARGS = "widget_tag_cloud_args";
+
+ /**
+ * Original hook name: widget_text
+ */
+ public static final String WIDGET_TEXT = "widget_text";
+
+ /**
+ * Original hook name: widget_text_content
+ */
+ public static final String WIDGET_TEXT_CONTENT = "widget_text_content";
+
+ /**
+ * Original hook name: widget_title
+ */
+ public static final String WIDGET_TITLE = "widget_title";
+
+ /**
+ * Original hook name: widget_types_to_hide_from_legacy_widget_block
+ */
+ public static final String WIDGET_TYPES_TO_HIDE_FROM_LEGACY_WIDGET_BLOCK = "widget_types_to_hide_from_legacy_widget_block";
+
+ /**
+ * Original hook name: widget_update_callback
+ */
+ public static final String WIDGET_UPDATE_CALLBACK = "widget_update_callback";
+
+ /**
+ * Original hook name: widget_{$this->id_base}_instance
+ */
+ public static final String WIDGET_THIS_ID_BASE_INSTANCE = "widget_{$this->id_base}_instance";
+
+ /**
+ * Original hook name: widget_{$this->id_base}_instance_schema
+ */
+ public static final String WIDGET_THIS_ID_BASE_INSTANCE_SCHEMA = "widget_{$this->id_base}_instance_schema";
+
+ /**
+ * Original hook name: widgets-php
+ */
+ public static final String WIDGETS_PHP = "widgets-php";
+
+ /**
+ * Original hook name: widgets_admin_page
+ */
+ public static final String WIDGETS_ADMIN_PAGE = "widgets_admin_page";
+
+ /**
+ * Original hook name: widgets_init
+ */
+ public static final String WIDGETS_INIT = "widgets_init";
+
+ /**
+ * Original hook name: wp
+ */
+ public static final String WP = "wp";
+
+ /**
+ * Original hook name: wp-mail-php
+ */
+ public static final String WP_MAIL_PHP = "wp-mail-php";
+
+ /**
+ * Original hook name: wp_abilities_api_categories_init
+ */
+ public static final String WP_ABILITIES_API_CATEGORIES_INIT = "wp_abilities_api_categories_init";
+
+ /**
+ * Original hook name: wp_abilities_api_init
+ */
+ public static final String WP_ABILITIES_API_INIT = "wp_abilities_api_init";
+
+ /**
+ * Original hook name: wp_add_nav_menu_item
+ */
+ public static final String WP_ADD_NAV_MENU_ITEM = "wp_add_nav_menu_item";
+
+ /**
+ * Original hook name: wp_admin_bar_class
+ */
+ public static final String WP_ADMIN_BAR_CLASS = "wp_admin_bar_class";
+
+ /**
+ * Original hook name: wp_admin_bar_show_site_icons
+ */
+ public static final String WP_ADMIN_BAR_SHOW_SITE_ICONS = "wp_admin_bar_show_site_icons";
+
+ /**
+ * Original hook name: wp_admin_canonical_url
+ */
+ public static final String WP_ADMIN_CANONICAL_URL = "wp_admin_canonical_url";
+
+ /**
+ * Original hook name: wp_admin_css
+ */
+ public static final String WP_ADMIN_CSS = "wp_admin_css";
+
+ /**
+ * Original hook name: wp_admin_css_uri
+ */
+ public static final String WP_ADMIN_CSS_URI = "wp_admin_css_uri";
+
+ /**
+ * Original hook name: wp_admin_notice
+ */
+ public static final String WP_ADMIN_NOTICE = "wp_admin_notice";
+
+ /**
+ * Original hook name: wp_admin_notice_args
+ */
+ public static final String WP_ADMIN_NOTICE_ARGS = "wp_admin_notice_args";
+
+ /**
+ * Original hook name: wp_admin_notice_markup
+ */
+ public static final String WP_ADMIN_NOTICE_MARKUP = "wp_admin_notice_markup";
+
+ /**
+ * Original hook name: wp_after_admin_bar_render
+ */
+ public static final String WP_AFTER_ADMIN_BAR_RENDER = "wp_after_admin_bar_render";
+
+ /**
+ * Original hook name: wp_after_execute_ability
+ */
+ public static final String WP_AFTER_EXECUTE_ABILITY = "wp_after_execute_ability";
+
+ /**
+ * Original hook name: wp_after_insert_post
+ */
+ public static final String WP_AFTER_INSERT_POST = "wp_after_insert_post";
+
+ /**
+ * Original hook name: wp_after_load_template
+ */
+ public static final String WP_AFTER_LOAD_TEMPLATE = "wp_after_load_template";
+
+ /**
+ * Original hook name: wp_ajax_crop_image_pre_save
+ */
+ public static final String WP_AJAX_CROP_IMAGE_PRE_SAVE = "wp_ajax_crop_image_pre_save";
+
+ /**
+ * Original hook name: wp_ajax_cropped_attachment_id
+ */
+ public static final String WP_AJAX_CROPPED_ATTACHMENT_ID = "wp_ajax_cropped_attachment_id";
+
+ /**
+ * Original hook name: wp_ajax_cropped_attachment_metadata
+ */
+ public static final String WP_AJAX_CROPPED_ATTACHMENT_METADATA = "wp_ajax_cropped_attachment_metadata";
+
+ /**
+ * Original hook name: wp_ajax_menu_quick_search_args
+ */
+ public static final String WP_AJAX_MENU_QUICK_SEARCH_ARGS = "wp_ajax_menu_quick_search_args";
+
+ /**
+ * Original hook name: wp_ajax_nopriv_{$action}
+ */
+ public static final String WP_AJAX_NOPRIV_ACTION = "wp_ajax_nopriv_{$action}";
+
+ /**
+ * Original hook name: wp_ajax_{$action}
+ */
+ public static final String WP_AJAX_ACTION = "wp_ajax_{$action}";
+
+ /**
+ * Original hook name: wp_allow_query_attachment_by_filename
+ */
+ public static final String WP_ALLOW_QUERY_ATTACHMENT_BY_FILENAME = "wp_allow_query_attachment_by_filename";
+
+ /**
+ * Original hook name: wp_allowed_block_metadata_collection_roots
+ */
+ public static final String WP_ALLOWED_BLOCK_METADATA_COLLECTION_ROOTS = "wp_allowed_block_metadata_collection_roots";
+
+ /**
+ * Original hook name: wp_anonymize_comment
+ */
+ public static final String WP_ANONYMIZE_COMMENT = "wp_anonymize_comment";
+
+ /**
+ * Original hook name: wp_atom_server_class
+ */
+ public static final String WP_ATOM_SERVER_CLASS = "wp_atom_server_class";
+
+ /**
+ * Original hook name: wp_audio_embed_handler
+ */
+ public static final String WP_AUDIO_EMBED_HANDLER = "wp_audio_embed_handler";
+
+ /**
+ * Original hook name: wp_audio_extensions
+ */
+ public static final String WP_AUDIO_EXTENSIONS = "wp_audio_extensions";
+
+ /**
+ * Original hook name: wp_audio_shortcode
+ */
+ public static final String WP_AUDIO_SHORTCODE = "wp_audio_shortcode";
+
+ /**
+ * Original hook name: wp_audio_shortcode_class
+ */
+ public static final String WP_AUDIO_SHORTCODE_CLASS = "wp_audio_shortcode_class";
+
+ /**
+ * Original hook name: wp_audio_shortcode_handler
+ */
+ public static final String WP_AUDIO_SHORTCODE_HANDLER = "wp_audio_shortcode_handler";
+
+ /**
+ * Original hook name: wp_audio_shortcode_library
+ */
+ public static final String WP_AUDIO_SHORTCODE_LIBRARY = "wp_audio_shortcode_library";
+
+ /**
+ * Original hook name: wp_audio_shortcode_override
+ */
+ public static final String WP_AUDIO_SHORTCODE_OVERRIDE = "wp_audio_shortcode_override";
+
+ /**
+ * Original hook name: wp_auth_check_interval
+ */
+ public static final String WP_AUTH_CHECK_INTERVAL = "wp_auth_check_interval";
+
+ /**
+ * Original hook name: wp_auth_check_load
+ */
+ public static final String WP_AUTH_CHECK_LOAD = "wp_auth_check_load";
+
+ /**
+ * Original hook name: wp_auth_check_same_domain
+ */
+ public static final String WP_AUTH_CHECK_SAME_DOMAIN = "wp_auth_check_same_domain";
+
+ /**
+ * Original hook name: wp_authenticate
+ */
+ public static final String WP_AUTHENTICATE = "wp_authenticate";
+
+ /**
+ * Original hook name: wp_authenticate_application_password_errors
+ */
+ public static final String WP_AUTHENTICATE_APPLICATION_PASSWORD_ERRORS = "wp_authenticate_application_password_errors";
+
+ /**
+ * Original hook name: wp_authenticate_user
+ */
+ public static final String WP_AUTHENTICATE_USER = "wp_authenticate_user";
+
+ /**
+ * Original hook name: wp_authorize_application_password_form
+ */
+ public static final String WP_AUTHORIZE_APPLICATION_PASSWORD_FORM = "wp_authorize_application_password_form";
+
+ /**
+ * Original hook name: wp_authorize_application_password_form_approved_no_js
+ */
+ public static final String WP_AUTHORIZE_APPLICATION_PASSWORD_FORM_APPROVED_NO_JS = "wp_authorize_application_password_form_approved_no_js";
+
+ /**
+ * Original hook name: wp_authorize_application_password_request_errors
+ */
+ public static final String WP_AUTHORIZE_APPLICATION_PASSWORD_REQUEST_ERRORS = "wp_authorize_application_password_request_errors";
+
+ /**
+ * Original hook name: wp_authorize_application_redirect_url_invalid_protocols
+ */
+ public static final String WP_AUTHORIZE_APPLICATION_REDIRECT_URL_INVALID_PROTOCOLS = "wp_authorize_application_redirect_url_invalid_protocols";
+
+ /**
+ * Original hook name: wp_autoload_values_to_autoload
+ */
+ public static final String WP_AUTOLOAD_VALUES_TO_AUTOLOAD = "wp_autoload_values_to_autoload";
+
+ /**
+ * Original hook name: wp_before_admin_bar_render
+ */
+ public static final String WP_BEFORE_ADMIN_BAR_RENDER = "wp_before_admin_bar_render";
+
+ /**
+ * Original hook name: wp_before_execute_ability
+ */
+ public static final String WP_BEFORE_EXECUTE_ABILITY = "wp_before_execute_ability";
+
+ /**
+ * Original hook name: wp_before_include_template
+ */
+ public static final String WP_BEFORE_INCLUDE_TEMPLATE = "wp_before_include_template";
+
+ /**
+ * Original hook name: wp_before_load_template
+ */
+ public static final String WP_BEFORE_LOAD_TEMPLATE = "wp_before_load_template";
+
+ /**
+ * Original hook name: wp_blacklist_check
+ */
+ public static final String WP_BLACKLIST_CHECK = "wp_blacklist_check";
+
+ /**
+ * Original hook name: wp_body_open
+ */
+ public static final String WP_BODY_OPEN = "wp_body_open";
+
+ /**
+ * Original hook name: wp_cache_set_last_changed
+ */
+ public static final String WP_CACHE_SET_LAST_CHANGED = "wp_cache_set_last_changed";
+
+ /**
+ * Original hook name: wp_cache_themes_persistently
+ */
+ public static final String WP_CACHE_THEMES_PERSISTENTLY = "wp_cache_themes_persistently";
+
+ /**
+ * Original hook name: wp_calculate_image_sizes
+ */
+ public static final String WP_CALCULATE_IMAGE_SIZES = "wp_calculate_image_sizes";
+
+ /**
+ * Original hook name: wp_calculate_image_srcset
+ */
+ public static final String WP_CALCULATE_IMAGE_SRCSET = "wp_calculate_image_srcset";
+
+ /**
+ * Original hook name: wp_calculate_image_srcset_meta
+ */
+ public static final String WP_CALCULATE_IMAGE_SRCSET_META = "wp_calculate_image_srcset_meta";
+
+ /**
+ * Original hook name: wp_check_comment_disallowed_list
+ */
+ public static final String WP_CHECK_COMMENT_DISALLOWED_LIST = "wp_check_comment_disallowed_list";
+
+ /**
+ * Original hook name: wp_check_filetype_and_ext
+ */
+ public static final String WP_CHECK_FILETYPE_AND_EXT = "wp_check_filetype_and_ext";
+
+ /**
+ * Original hook name: wp_check_post_lock_window
+ */
+ public static final String WP_CHECK_POST_LOCK_WINDOW = "wp_check_post_lock_window";
+
+ /**
+ * Original hook name: wp_checkdate
+ */
+ public static final String WP_CHECKDATE = "wp_checkdate";
+
+ /**
+ * Original hook name: wp_code_editor_settings
+ */
+ public static final String WP_CODE_EDITOR_SETTINGS = "wp_code_editor_settings";
+
+ /**
+ * Original hook name: wp_comment_reply
+ */
+ public static final String WP_COMMENT_REPLY = "wp_comment_reply";
+
+ /**
+ * Original hook name: wp_constrain_dimensions
+ */
+ public static final String WP_CONSTRAIN_DIMENSIONS = "wp_constrain_dimensions";
+
+ /**
+ * Original hook name: wp_content_img_tag
+ */
+ public static final String WP_CONTENT_IMG_TAG = "wp_content_img_tag";
+
+ /**
+ * Original hook name: wp_count_attachments
+ */
+ public static final String WP_COUNT_ATTACHMENTS = "wp_count_attachments";
+
+ /**
+ * Original hook name: wp_count_comments
+ */
+ public static final String WP_COUNT_COMMENTS = "wp_count_comments";
+
+ /**
+ * Original hook name: wp_count_posts
+ */
+ public static final String WP_COUNT_POSTS = "wp_count_posts";
+
+ /**
+ * Original hook name: wp_create_application_password
+ */
+ public static final String WP_CREATE_APPLICATION_PASSWORD = "wp_create_application_password";
+
+ /**
+ * Original hook name: wp_create_application_password_form
+ */
+ public static final String WP_CREATE_APPLICATION_PASSWORD_FORM = "wp_create_application_password_form";
+
+ /**
+ * Original hook name: wp_create_file_in_uploads
+ */
+ public static final String WP_CREATE_FILE_IN_UPLOADS = "wp_create_file_in_uploads";
+
+ /**
+ * Original hook name: wp_create_nav_menu
+ */
+ public static final String WP_CREATE_NAV_MENU = "wp_create_nav_menu";
+
+ /**
+ * Original hook name: wp_create_thumbnail
+ */
+ public static final String WP_CREATE_THUMBNAIL = "wp_create_thumbnail";
+
+ /**
+ * Original hook name: wp_creating_autosave
+ */
+ public static final String WP_CREATING_AUTOSAVE = "wp_creating_autosave";
+
+ /**
+ * Original hook name: wp_dashboard_setup
+ */
+ public static final String WP_DASHBOARD_SETUP = "wp_dashboard_setup";
+
+ /**
+ * Original hook name: wp_dashboard_widget_links_{$widget_id}
+ */
+ public static final String WP_DASHBOARD_WIDGET_LINKS_WIDGET_ID = "wp_dashboard_widget_links_{$widget_id}";
+
+ /**
+ * Original hook name: wp_dashboard_widgets
+ */
+ public static final String WP_DASHBOARD_WIDGETS = "wp_dashboard_widgets";
+
+ /**
+ * Original hook name: wp_date
+ */
+ public static final String WP_DATE = "wp_date";
+
+ /**
+ * Original hook name: wp_default_autoload_value
+ */
+ public static final String WP_DEFAULT_AUTOLOAD_VALUE = "wp_default_autoload_value";
+
+ /**
+ * Original hook name: wp_default_editor
+ */
+ public static final String WP_DEFAULT_EDITOR = "wp_default_editor";
+
+ /**
+ * Original hook name: wp_default_scripts
+ */
+ public static final String WP_DEFAULT_SCRIPTS = "wp_default_scripts";
+
+ /**
+ * Original hook name: wp_default_styles
+ */
+ public static final String WP_DEFAULT_STYLES = "wp_default_styles";
+
+ /**
+ * Original hook name: wp_delete_application_password
+ */
+ public static final String WP_DELETE_APPLICATION_PASSWORD = "wp_delete_application_password";
+
+ /**
+ * Original hook name: wp_delete_file
+ */
+ public static final String WP_DELETE_FILE = "wp_delete_file";
+
+ /**
+ * Original hook name: wp_delete_nav_menu
+ */
+ public static final String WP_DELETE_NAV_MENU = "wp_delete_nav_menu";
+
+ /**
+ * Original hook name: wp_delete_post_revision
+ */
+ public static final String WP_DELETE_POST_REVISION = "wp_delete_post_revision";
+
+ /**
+ * Original hook name: wp_delete_site
+ */
+ public static final String WP_DELETE_SITE = "wp_delete_site";
+
+ /**
+ * Original hook name: wp_die_ajax_handler
+ */
+ public static final String WP_DIE_AJAX_HANDLER = "wp_die_ajax_handler";
+
+ /**
+ * Original hook name: wp_die_app_handler
+ */
+ public static final String WP_DIE_APP_HANDLER = "wp_die_app_handler";
+
+ /**
+ * Original hook name: wp_die_handler
+ */
+ public static final String WP_DIE_HANDLER = "wp_die_handler";
+
+ /**
+ * Original hook name: wp_die_json_handler
+ */
+ public static final String WP_DIE_JSON_HANDLER = "wp_die_json_handler";
+
+ /**
+ * Original hook name: wp_die_jsonp_handler
+ */
+ public static final String WP_DIE_JSONP_HANDLER = "wp_die_jsonp_handler";
+
+ /**
+ * Original hook name: wp_die_xml_handler
+ */
+ public static final String WP_DIE_XML_HANDLER = "wp_die_xml_handler";
+
+ /**
+ * Original hook name: wp_die_xmlrpc_handler
+ */
+ public static final String WP_DIE_XMLRPC_HANDLER = "wp_die_xmlrpc_handler";
+
+ /**
+ * Original hook name: wp_direct_php_update_url
+ */
+ public static final String WP_DIRECT_PHP_UPDATE_URL = "wp_direct_php_update_url";
+
+ /**
+ * Original hook name: wp_direct_update_https_url
+ */
+ public static final String WP_DIRECT_UPDATE_HTTPS_URL = "wp_direct_update_https_url";
+
+ /**
+ * Original hook name: wp_doing_ajax
+ */
+ public static final String WP_DOING_AJAX = "wp_doing_ajax";
+
+ /**
+ * Original hook name: wp_doing_cron
+ */
+ public static final String WP_DOING_CRON = "wp_doing_cron";
+
+ /**
+ * Original hook name: wp_dropdown_cats
+ */
+ public static final String WP_DROPDOWN_CATS = "wp_dropdown_cats";
+
+ /**
+ * Original hook name: wp_dropdown_pages
+ */
+ public static final String WP_DROPDOWN_PAGES = "wp_dropdown_pages";
+
+ /**
+ * Original hook name: wp_dropdown_users
+ */
+ public static final String WP_DROPDOWN_USERS = "wp_dropdown_users";
+
+ /**
+ * Original hook name: wp_dropdown_users_args
+ */
+ public static final String WP_DROPDOWN_USERS_ARGS = "wp_dropdown_users_args";
+
+ /**
+ * Original hook name: wp_edit_form_attachment_display
+ */
+ public static final String WP_EDIT_FORM_ATTACHMENT_DISPLAY = "wp_edit_form_attachment_display";
+
+ /**
+ * Original hook name: wp_edit_nav_menu_walker
+ */
+ public static final String WP_EDIT_NAV_MENU_WALKER = "wp_edit_nav_menu_walker";
+
+ /**
+ * Original hook name: wp_edited_image_metadata
+ */
+ public static final String WP_EDITED_IMAGE_METADATA = "wp_edited_image_metadata";
+
+ /**
+ * Original hook name: wp_editor_expand
+ */
+ public static final String WP_EDITOR_EXPAND = "wp_editor_expand";
+
+ /**
+ * Original hook name: wp_editor_set_quality
+ */
+ public static final String WP_EDITOR_SET_QUALITY = "wp_editor_set_quality";
+
+ /**
+ * Original hook name: wp_editor_settings
+ */
+ public static final String WP_EDITOR_SETTINGS = "wp_editor_settings";
+
+ /**
+ * Original hook name: wp_embed_handler_audio
+ */
+ public static final String WP_EMBED_HANDLER_AUDIO = "wp_embed_handler_audio";
+
+ /**
+ * Original hook name: wp_embed_handler_video
+ */
+ public static final String WP_EMBED_HANDLER_VIDEO = "wp_embed_handler_video";
+
+ /**
+ * Original hook name: wp_embed_handler_youtube
+ */
+ public static final String WP_EMBED_HANDLER_YOUTUBE = "wp_embed_handler_youtube";
+
+ /**
+ * Original hook name: wp_enqueue_code_editor
+ */
+ public static final String WP_ENQUEUE_CODE_EDITOR = "wp_enqueue_code_editor";
+
+ /**
+ * Original hook name: wp_enqueue_editor
+ */
+ public static final String WP_ENQUEUE_EDITOR = "wp_enqueue_editor";
+
+ /**
+ * Original hook name: wp_enqueue_media
+ */
+ public static final String WP_ENQUEUE_MEDIA = "wp_enqueue_media";
+
+ /**
+ * Original hook name: wp_enqueue_scripts
+ */
+ public static final String WP_ENQUEUE_SCRIPTS = "wp_enqueue_scripts";
+
+ /**
+ * Original hook name: wp_error_added
+ */
+ public static final String WP_ERROR_ADDED = "wp_error_added";
+
+ /**
+ * Original hook name: wp_fatal_error_handler_enabled
+ */
+ public static final String WP_FATAL_ERROR_HANDLER_ENABLED = "wp_fatal_error_handler_enabled";
+
+ /**
+ * Original hook name: wp_feed_cache_transient_lifetime
+ */
+ public static final String WP_FEED_CACHE_TRANSIENT_LIFETIME = "wp_feed_cache_transient_lifetime";
+
+ /**
+ * Original hook name: wp_feed_options
+ */
+ public static final String WP_FEED_OPTIONS = "wp_feed_options";
+
+ /**
+ * Original hook name: wp_filesize
+ */
+ public static final String WP_FILESIZE = "wp_filesize";
+
+ /**
+ * Original hook name: wp_finalized_template_enhancement_output_buffer
+ */
+ public static final String WP_FINALIZED_TEMPLATE_ENHANCEMENT_OUTPUT_BUFFER = "wp_finalized_template_enhancement_output_buffer";
+
+ /**
+ * Original hook name: wp_footer
+ */
+ public static final String WP_FOOTER = "wp_footer";
+
+ /**
+ * Original hook name: wp_fullscreen_buttons
+ */
+ public static final String WP_FULLSCREEN_BUTTONS = "wp_fullscreen_buttons";
+
+ /**
+ * Original hook name: wp_generate_attachment_metadata
+ */
+ public static final String WP_GENERATE_ATTACHMENT_METADATA = "wp_generate_attachment_metadata";
+
+ /**
+ * Original hook name: wp_generate_tag_cloud
+ */
+ public static final String WP_GENERATE_TAG_CLOUD = "wp_generate_tag_cloud";
+
+ /**
+ * Original hook name: wp_generate_tag_cloud_data
+ */
+ public static final String WP_GENERATE_TAG_CLOUD_DATA = "wp_generate_tag_cloud_data";
+
+ /**
+ * Original hook name: wp_generator_type
+ */
+ public static final String WP_GENERATOR_TYPE = "wp_generator_type";
+
+ /**
+ * Original hook name: wp_get_attachment_caption
+ */
+ public static final String WP_GET_ATTACHMENT_CAPTION = "wp_get_attachment_caption";
+
+ /**
+ * Original hook name: wp_get_attachment_id3_keys
+ */
+ public static final String WP_GET_ATTACHMENT_ID3_KEYS = "wp_get_attachment_id3_keys";
+
+ /**
+ * Original hook name: wp_get_attachment_image
+ */
+ public static final String WP_GET_ATTACHMENT_IMAGE = "wp_get_attachment_image";
+
+ /**
+ * Original hook name: wp_get_attachment_image_attributes
+ */
+ public static final String WP_GET_ATTACHMENT_IMAGE_ATTRIBUTES = "wp_get_attachment_image_attributes";
+
+ /**
+ * Original hook name: wp_get_attachment_image_context
+ */
+ public static final String WP_GET_ATTACHMENT_IMAGE_CONTEXT = "wp_get_attachment_image_context";
+
+ /**
+ * Original hook name: wp_get_attachment_image_src
+ */
+ public static final String WP_GET_ATTACHMENT_IMAGE_SRC = "wp_get_attachment_image_src";
+
+ /**
+ * Original hook name: wp_get_attachment_link
+ */
+ public static final String WP_GET_ATTACHMENT_LINK = "wp_get_attachment_link";
+
+ /**
+ * Original hook name: wp_get_attachment_link_attributes
+ */
+ public static final String WP_GET_ATTACHMENT_LINK_ATTRIBUTES = "wp_get_attachment_link_attributes";
+
+ /**
+ * Original hook name: wp_get_attachment_metadata
+ */
+ public static final String WP_GET_ATTACHMENT_METADATA = "wp_get_attachment_metadata";
+
+ /**
+ * Original hook name: wp_get_attachment_thumb_file
+ */
+ public static final String WP_GET_ATTACHMENT_THUMB_FILE = "wp_get_attachment_thumb_file";
+
+ /**
+ * Original hook name: wp_get_attachment_thumb_url
+ */
+ public static final String WP_GET_ATTACHMENT_THUMB_URL = "wp_get_attachment_thumb_url";
+
+ /**
+ * Original hook name: wp_get_attachment_url
+ */
+ public static final String WP_GET_ATTACHMENT_URL = "wp_get_attachment_url";
+
+ /**
+ * Original hook name: wp_get_comment_fields_max_lengths
+ */
+ public static final String WP_GET_COMMENT_FIELDS_MAX_LENGTHS = "wp_get_comment_fields_max_lengths";
+
+ /**
+ * Original hook name: wp_get_current_commenter
+ */
+ public static final String WP_GET_CURRENT_COMMENTER = "wp_get_current_commenter";
+
+ /**
+ * Original hook name: wp_get_custom_css
+ */
+ public static final String WP_GET_CUSTOM_CSS = "wp_get_custom_css";
+
+ /**
+ * Original hook name: wp_get_default_privacy_policy_content
+ */
+ public static final String WP_GET_DEFAULT_PRIVACY_POLICY_CONTENT = "wp_get_default_privacy_policy_content";
+
+ /**
+ * Original hook name: wp_get_loading_optimization_attributes
+ */
+ public static final String WP_GET_LOADING_OPTIMIZATION_ATTRIBUTES = "wp_get_loading_optimization_attributes";
+
+ /**
+ * Original hook name: wp_get_missing_image_subsizes
+ */
+ public static final String WP_GET_MISSING_IMAGE_SUBSIZES = "wp_get_missing_image_subsizes";
+
+ /**
+ * Original hook name: wp_get_nav_menu_items
+ */
+ public static final String WP_GET_NAV_MENU_ITEMS = "wp_get_nav_menu_items";
+
+ /**
+ * Original hook name: wp_get_nav_menu_name
+ */
+ public static final String WP_GET_NAV_MENU_NAME = "wp_get_nav_menu_name";
+
+ /**
+ * Original hook name: wp_get_nav_menu_object
+ */
+ public static final String WP_GET_NAV_MENU_OBJECT = "wp_get_nav_menu_object";
+
+ /**
+ * Original hook name: wp_get_nav_menus
+ */
+ public static final String WP_GET_NAV_MENUS = "wp_get_nav_menus";
+
+ /**
+ * Original hook name: wp_get_object_terms
+ */
+ public static final String WP_GET_OBJECT_TERMS = "wp_get_object_terms";
+
+ /**
+ * Original hook name: wp_get_object_terms_args
+ */
+ public static final String WP_GET_OBJECT_TERMS_ARGS = "wp_get_object_terms_args";
+
+ /**
+ * Original hook name: wp_get_original_image_path
+ */
+ public static final String WP_GET_ORIGINAL_IMAGE_PATH = "wp_get_original_image_path";
+
+ /**
+ * Original hook name: wp_get_original_image_url
+ */
+ public static final String WP_GET_ORIGINAL_IMAGE_URL = "wp_get_original_image_url";
+
+ /**
+ * Original hook name: wp_get_revision_ui_diff
+ */
+ public static final String WP_GET_REVISION_UI_DIFF = "wp_get_revision_ui_diff";
+
+ /**
+ * Original hook name: wp_get_update_data
+ */
+ public static final String WP_GET_UPDATE_DATA = "wp_get_update_data";
+
+ /**
+ * Original hook name: wp_handle_upload
+ */
+ public static final String WP_HANDLE_UPLOAD = "wp_handle_upload";
+
+ /**
+ * Original hook name: wp_handle_upload_prefilter
+ */
+ public static final String WP_HANDLE_UPLOAD_PREFILTER = "wp_handle_upload_prefilter";
+
+ /**
+ * Original hook name: wp_hash_password_algorithm
+ */
+ public static final String WP_HASH_PASSWORD_ALGORITHM = "wp_hash_password_algorithm";
+
+ /**
+ * Original hook name: wp_hash_password_options
+ */
+ public static final String WP_HASH_PASSWORD_OPTIONS = "wp_hash_password_options";
+
+ /**
+ * Original hook name: wp_head
+ */
+ public static final String WP_HEAD = "wp_head";
+
+ /**
+ * Original hook name: wp_header_image_attachment_metadata
+ */
+ public static final String WP_HEADER_IMAGE_ATTACHMENT_METADATA = "wp_header_image_attachment_metadata";
+
+ /**
+ * Original hook name: wp_headers
+ */
+ public static final String WP_HEADERS = "wp_headers";
+
+ /**
+ * Original hook name: wp_http_accept_encoding
+ */
+ public static final String WP_HTTP_ACCEPT_ENCODING = "wp_http_accept_encoding";
+
+ /**
+ * Original hook name: wp_http_cookie_value
+ */
+ public static final String WP_HTTP_COOKIE_VALUE = "wp_http_cookie_value";
+
+ /**
+ * Original hook name: wp_http_ixr_client_headers
+ */
+ public static final String WP_HTTP_IXR_CLIENT_HEADERS = "wp_http_ixr_client_headers";
+
+ /**
+ * Original hook name: wp_iframe_tag_add_loading_attr
+ */
+ public static final String WP_IFRAME_TAG_ADD_LOADING_ATTR = "wp_iframe_tag_add_loading_attr";
+
+ /**
+ * Original hook name: wp_image_editor_before_change
+ */
+ public static final String WP_IMAGE_EDITOR_BEFORE_CHANGE = "wp_image_editor_before_change";
+
+ /**
+ * Original hook name: wp_image_editors
+ */
+ public static final String WP_IMAGE_EDITORS = "wp_image_editors";
+
+ /**
+ * Original hook name: wp_image_file_matches_image_meta
+ */
+ public static final String WP_IMAGE_FILE_MATCHES_IMAGE_META = "wp_image_file_matches_image_meta";
+
+ /**
+ * Original hook name: wp_image_maybe_exif_rotate
+ */
+ public static final String WP_IMAGE_MAYBE_EXIF_ROTATE = "wp_image_maybe_exif_rotate";
+
+ /**
+ * Original hook name: wp_image_resize_identical_dimensions
+ */
+ public static final String WP_IMAGE_RESIZE_IDENTICAL_DIMENSIONS = "wp_image_resize_identical_dimensions";
+
+ /**
+ * Original hook name: wp_image_src_get_dimensions
+ */
+ public static final String WP_IMAGE_SRC_GET_DIMENSIONS = "wp_image_src_get_dimensions";
+
+ /**
+ * Original hook name: wp_img_tag_add_auto_sizes
+ */
+ public static final String WP_IMG_TAG_ADD_AUTO_SIZES = "wp_img_tag_add_auto_sizes";
+
+ /**
+ * Original hook name: wp_img_tag_add_decoding_attr
+ */
+ public static final String WP_IMG_TAG_ADD_DECODING_ATTR = "wp_img_tag_add_decoding_attr";
+
+ /**
+ * Original hook name: wp_img_tag_add_loading_attr
+ */
+ public static final String WP_IMG_TAG_ADD_LOADING_ATTR = "wp_img_tag_add_loading_attr";
+
+ /**
+ * Original hook name: wp_img_tag_add_srcset_and_sizes_attr
+ */
+ public static final String WP_IMG_TAG_ADD_SRCSET_AND_SIZES_ATTR = "wp_img_tag_add_srcset_and_sizes_attr";
+
+ /**
+ * Original hook name: wp_img_tag_add_width_and_height_attr
+ */
+ public static final String WP_IMG_TAG_ADD_WIDTH_AND_HEIGHT_ATTR = "wp_img_tag_add_width_and_height_attr";
+
+ /**
+ * Original hook name: wp_initialize_site
+ */
+ public static final String WP_INITIALIZE_SITE = "wp_initialize_site";
+
+ /**
+ * Original hook name: wp_initialize_site_args
+ */
+ public static final String WP_INITIALIZE_SITE_ARGS = "wp_initialize_site_args";
+
+ /**
+ * Original hook name: wp_inline_script_attributes
+ */
+ public static final String WP_INLINE_SCRIPT_ATTRIBUTES = "wp_inline_script_attributes";
+
+ /**
+ * Original hook name: wp_insert_attachment_data
+ */
+ public static final String WP_INSERT_ATTACHMENT_DATA = "wp_insert_attachment_data";
+
+ /**
+ * Original hook name: wp_insert_comment
+ */
+ public static final String WP_INSERT_COMMENT = "wp_insert_comment";
+
+ /**
+ * Original hook name: wp_insert_post
+ */
+ public static final String WP_INSERT_POST = "wp_insert_post";
+
+ /**
+ * Original hook name: wp_insert_post_data
+ */
+ public static final String WP_INSERT_POST_DATA = "wp_insert_post_data";
+
+ /**
+ * Original hook name: wp_insert_post_empty_content
+ */
+ public static final String WP_INSERT_POST_EMPTY_CONTENT = "wp_insert_post_empty_content";
+
+ /**
+ * Original hook name: wp_insert_post_parent
+ */
+ public static final String WP_INSERT_POST_PARENT = "wp_insert_post_parent";
+
+ /**
+ * Original hook name: wp_insert_site
+ */
+ public static final String WP_INSERT_SITE = "wp_insert_site";
+
+ /**
+ * Original hook name: wp_insert_term_data
+ */
+ public static final String WP_INSERT_TERM_DATA = "wp_insert_term_data";
+
+ /**
+ * Original hook name: wp_insert_term_duplicate_term_check
+ */
+ public static final String WP_INSERT_TERM_DUPLICATE_TERM_CHECK = "wp_insert_term_duplicate_term_check";
+
+ /**
+ * Original hook name: wp_install
+ */
+ public static final String WP_INSTALL = "wp_install";
+
+ /**
+ * Original hook name: wp_installed_email
+ */
+ public static final String WP_INSTALLED_EMAIL = "wp_installed_email";
+
+ /**
+ * Original hook name: wp_internal_hosts
+ */
+ public static final String WP_INTERNAL_HOSTS = "wp_internal_hosts";
+
+ /**
+ * Original hook name: wp_is_application_passwords_available
+ */
+ public static final String WP_IS_APPLICATION_PASSWORDS_AVAILABLE = "wp_is_application_passwords_available";
+
+ /**
+ * Original hook name: wp_is_application_passwords_available_for_user
+ */
+ public static final String WP_IS_APPLICATION_PASSWORDS_AVAILABLE_FOR_USER = "wp_is_application_passwords_available_for_user";
+
+ /**
+ * Original hook name: wp_is_comment_flood
+ */
+ public static final String WP_IS_COMMENT_FLOOD = "wp_is_comment_flood";
+
+ /**
+ * Original hook name: wp_is_large_network
+ */
+ public static final String WP_IS_LARGE_NETWORK = "wp_is_large_network";
+
+ /**
+ * Original hook name: wp_is_large_user_count
+ */
+ public static final String WP_IS_LARGE_USER_COUNT = "wp_is_large_user_count";
+
+ /**
+ * Original hook name: wp_is_mobile
+ */
+ public static final String WP_IS_MOBILE = "wp_is_mobile";
+
+ /**
+ * Original hook name: wp_is_php_version_acceptable
+ */
+ public static final String WP_IS_PHP_VERSION_ACCEPTABLE = "wp_is_php_version_acceptable";
+
+ /**
+ * Original hook name: wp_is_rest_endpoint
+ */
+ public static final String WP_IS_REST_ENDPOINT = "wp_is_rest_endpoint";
+
+ /**
+ * Original hook name: wp_is_site_protected_by_basic_auth
+ */
+ public static final String WP_IS_SITE_PROTECTED_BY_BASIC_AUTH = "wp_is_site_protected_by_basic_auth";
+
+ /**
+ * Original hook name: wp_kses_allowed_html
+ */
+ public static final String WP_KSES_ALLOWED_HTML = "wp_kses_allowed_html";
+
+ /**
+ * Original hook name: wp_kses_uri_attributes
+ */
+ public static final String WP_KSES_URI_ATTRIBUTES = "wp_kses_uri_attributes";
+
+ /**
+ * Original hook name: wp_lazy_loading_enabled
+ */
+ public static final String WP_LAZY_LOADING_ENABLED = "wp_lazy_loading_enabled";
+
+ /**
+ * Original hook name: wp_link_pages
+ */
+ public static final String WP_LINK_PAGES = "wp_link_pages";
+
+ /**
+ * Original hook name: wp_link_pages_args
+ */
+ public static final String WP_LINK_PAGES_ARGS = "wp_link_pages_args";
+
+ /**
+ * Original hook name: wp_link_pages_link
+ */
+ public static final String WP_LINK_PAGES_LINK = "wp_link_pages_link";
+
+ /**
+ * Original hook name: wp_link_query
+ */
+ public static final String WP_LINK_QUERY = "wp_link_query";
+
+ /**
+ * Original hook name: wp_link_query_args
+ */
+ public static final String WP_LINK_QUERY_ARGS = "wp_link_query_args";
+
+ /**
+ * Original hook name: wp_list_authors_args
+ */
+ public static final String WP_LIST_AUTHORS_ARGS = "wp_list_authors_args";
+
+ /**
+ * Original hook name: wp_list_bookmarks
+ */
+ public static final String WP_LIST_BOOKMARKS = "wp_list_bookmarks";
+
+ /**
+ * Original hook name: wp_list_categories
+ */
+ public static final String WP_LIST_CATEGORIES = "wp_list_categories";
+
+ /**
+ * Original hook name: wp_list_comments_args
+ */
+ public static final String WP_LIST_COMMENTS_ARGS = "wp_list_comments_args";
+
+ /**
+ * Original hook name: wp_list_pages
+ */
+ public static final String WP_LIST_PAGES = "wp_list_pages";
+
+ /**
+ * Original hook name: wp_list_pages_excludes
+ */
+ public static final String WP_LIST_PAGES_EXCLUDES = "wp_list_pages_excludes";
+
+ /**
+ * Original hook name: wp_list_table_class_name
+ */
+ public static final String WP_LIST_TABLE_CLASS_NAME = "wp_list_table_class_name";
+
+ /**
+ * Original hook name: wp_list_table_show_post_checkbox
+ */
+ public static final String WP_LIST_TABLE_SHOW_POST_CHECKBOX = "wp_list_table_show_post_checkbox";
+
+ /**
+ * Original hook name: wp_list_users_args
+ */
+ public static final String WP_LIST_USERS_ARGS = "wp_list_users_args";
+
+ /**
+ * Original hook name: wp_load_speculation_rules
+ */
+ public static final String WP_LOAD_SPECULATION_RULES = "wp_load_speculation_rules";
+
+ /**
+ * Original hook name: wp_loaded
+ */
+ public static final String WP_LOADED = "wp_loaded";
+
+ /**
+ * Original hook name: wp_loading_optimization_force_header_contexts
+ */
+ public static final String WP_LOADING_OPTIMIZATION_FORCE_HEADER_CONTEXTS = "wp_loading_optimization_force_header_contexts";
+
+ /**
+ * Original hook name: wp_login
+ */
+ public static final String WP_LOGIN = "wp_login";
+
+ /**
+ * Original hook name: wp_login_errors
+ */
+ public static final String WP_LOGIN_ERRORS = "wp_login_errors";
+
+ /**
+ * Original hook name: wp_login_failed
+ */
+ public static final String WP_LOGIN_FAILED = "wp_login_failed";
+
+ /**
+ * Original hook name: wp_logout
+ */
+ public static final String WP_LOGOUT = "wp_logout";
+
+ /**
+ * Original hook name: wp_mail
+ */
+ public static final String WP_MAIL = "wp_mail";
+
+ /**
+ * Original hook name: wp_mail_charset
+ */
+ public static final String WP_MAIL_CHARSET = "wp_mail_charset";
+
+ /**
+ * Original hook name: wp_mail_content_type
+ */
+ public static final String WP_MAIL_CONTENT_TYPE = "wp_mail_content_type";
+
+ /**
+ * Original hook name: wp_mail_embed_args
+ */
+ public static final String WP_MAIL_EMBED_ARGS = "wp_mail_embed_args";
+
+ /**
+ * Original hook name: wp_mail_failed
+ */
+ public static final String WP_MAIL_FAILED = "wp_mail_failed";
+
+ /**
+ * Original hook name: wp_mail_from
+ */
+ public static final String WP_MAIL_FROM = "wp_mail_from";
+
+ /**
+ * Original hook name: wp_mail_from_name
+ */
+ public static final String WP_MAIL_FROM_NAME = "wp_mail_from_name";
+
+ /**
+ * Original hook name: wp_mail_original_content
+ */
+ public static final String WP_MAIL_ORIGINAL_CONTENT = "wp_mail_original_content";
+
+ /**
+ * Original hook name: wp_mail_succeeded
+ */
+ public static final String WP_MAIL_SUCCEEDED = "wp_mail_succeeded";
+
+ /**
+ * Original hook name: wp_max_autoloaded_option_size
+ */
+ public static final String WP_MAX_AUTOLOADED_OPTION_SIZE = "wp_max_autoloaded_option_size";
+
+ /**
+ * Original hook name: wp_maybe_auto_update
+ */
+ public static final String WP_MAYBE_AUTO_UPDATE = "wp_maybe_auto_update";
+
+ /**
+ * Original hook name: wp_mce_translation
+ */
+ public static final String WP_MCE_TRANSLATION = "wp_mce_translation";
+
+ /**
+ * Original hook name: wp_media_attach_action
+ */
+ public static final String WP_MEDIA_ATTACH_ACTION = "wp_media_attach_action";
+
+ /**
+ * Original hook name: wp_mediaelement_fallback
+ */
+ public static final String WP_MEDIAELEMENT_FALLBACK = "wp_mediaelement_fallback";
+
+ /**
+ * Original hook name: wp_meta
+ */
+ public static final String WP_META = "wp_meta";
+
+ /**
+ * Original hook name: wp_mime_type_icon
+ */
+ public static final String WP_MIME_TYPE_ICON = "wp_mime_type_icon";
+
+ /**
+ * Original hook name: wp_min_priority_img_pixels
+ */
+ public static final String WP_MIN_PRIORITY_IMG_PIXELS = "wp_min_priority_img_pixels";
+
+ /**
+ * Original hook name: wp_nav_locations_listed_per_menu
+ */
+ public static final String WP_NAV_LOCATIONS_LISTED_PER_MENU = "wp_nav_locations_listed_per_menu";
+
+ /**
+ * Original hook name: wp_nav_menu
+ */
+ public static final String WP_NAV_MENU = "wp_nav_menu";
+
+ /**
+ * Original hook name: wp_nav_menu_args
+ */
+ public static final String WP_NAV_MENU_ARGS = "wp_nav_menu_args";
+
+ /**
+ * Original hook name: wp_nav_menu_container_allowedtags
+ */
+ public static final String WP_NAV_MENU_CONTAINER_ALLOWEDTAGS = "wp_nav_menu_container_allowedtags";
+
+ /**
+ * Original hook name: wp_nav_menu_item_custom_fields
+ */
+ public static final String WP_NAV_MENU_ITEM_CUSTOM_FIELDS = "wp_nav_menu_item_custom_fields";
+
+ /**
+ * Original hook name: wp_nav_menu_item_custom_fields_customize_template
+ */
+ public static final String WP_NAV_MENU_ITEM_CUSTOM_FIELDS_CUSTOMIZE_TEMPLATE = "wp_nav_menu_item_custom_fields_customize_template";
+
+ /**
+ * Original hook name: wp_nav_menu_items
+ */
+ public static final String WP_NAV_MENU_ITEMS = "wp_nav_menu_items";
+
+ /**
+ * Original hook name: wp_nav_menu_objects
+ */
+ public static final String WP_NAV_MENU_OBJECTS = "wp_nav_menu_objects";
+
+ /**
+ * Original hook name: wp_nav_menu_{$menu->slug}_items
+ */
+ public static final String WP_NAV_MENU_MENU_SLUG_ITEMS = "wp_nav_menu_{$menu->slug}_items";
+
+ /**
+ * Original hook name: wp_navigation_should_create_fallback
+ */
+ public static final String WP_NAVIGATION_SHOULD_CREATE_FALLBACK = "wp_navigation_should_create_fallback";
+
+ /**
+ * Original hook name: wp_network_dashboard_setup
+ */
+ public static final String WP_NETWORK_DASHBOARD_SETUP = "wp_network_dashboard_setup";
+
+ /**
+ * Original hook name: wp_network_dashboard_widgets
+ */
+ public static final String WP_NETWORK_DASHBOARD_WIDGETS = "wp_network_dashboard_widgets";
+
+ /**
+ * Original hook name: wp_new_user_notification_email
+ */
+ public static final String WP_NEW_USER_NOTIFICATION_EMAIL = "wp_new_user_notification_email";
+
+ /**
+ * Original hook name: wp_new_user_notification_email_admin
+ */
+ public static final String WP_NEW_USER_NOTIFICATION_EMAIL_ADMIN = "wp_new_user_notification_email_admin";
+
+ /**
+ * Original hook name: wp_next_scheduled
+ */
+ public static final String WP_NEXT_SCHEDULED = "wp_next_scheduled";
+
+ /**
+ * Original hook name: wp_normalize_site_data
+ */
+ public static final String WP_NORMALIZE_SITE_DATA = "wp_normalize_site_data";
+
+ /**
+ * Original hook name: wp_omit_loading_attr_threshold
+ */
+ public static final String WP_OMIT_LOADING_ATTR_THRESHOLD = "wp_omit_loading_attr_threshold";
+
+ /**
+ * Original hook name: wp_opcache_invalidate_file
+ */
+ public static final String WP_OPCACHE_INVALIDATE_FILE = "wp_opcache_invalidate_file";
+
+ /**
+ * Original hook name: wp_page_menu
+ */
+ public static final String WP_PAGE_MENU = "wp_page_menu";
+
+ /**
+ * Original hook name: wp_page_menu_args
+ */
+ public static final String WP_PAGE_MENU_ARGS = "wp_page_menu_args";
+
+ /**
+ * Original hook name: wp_parse_str
+ */
+ public static final String WP_PARSE_STR = "wp_parse_str";
+
+ /**
+ * Original hook name: wp_password_change_notification_email
+ */
+ public static final String WP_PASSWORD_CHANGE_NOTIFICATION_EMAIL = "wp_password_change_notification_email";
+
+ /**
+ * Original hook name: wp_php_error_args
+ */
+ public static final String WP_PHP_ERROR_ARGS = "wp_php_error_args";
+
+ /**
+ * Original hook name: wp_php_error_message
+ */
+ public static final String WP_PHP_ERROR_MESSAGE = "wp_php_error_message";
+
+ /**
+ * Original hook name: wp_playlist_scripts
+ */
+ public static final String WP_PLAYLIST_SCRIPTS = "wp_playlist_scripts";
+
+ /**
+ * Original hook name: wp_plugin_dependencies_slug
+ */
+ public static final String WP_PLUGIN_DEPENDENCIES_SLUG = "wp_plugin_dependencies_slug";
+
+ /**
+ * Original hook name: wp_post_revision_meta_keys
+ */
+ public static final String WP_POST_REVISION_META_KEYS = "wp_post_revision_meta_keys";
+
+ /**
+ * Original hook name: wp_post_revision_title_expanded
+ */
+ public static final String WP_POST_REVISION_TITLE_EXPANDED = "wp_post_revision_title_expanded";
+
+ /**
+ * Original hook name: wp_pre_insert_user_data
+ */
+ public static final String WP_PRE_INSERT_USER_DATA = "wp_pre_insert_user_data";
+
+ /**
+ * Original hook name: wp_preload_resources
+ */
+ public static final String WP_PRELOAD_RESOURCES = "wp_preload_resources";
+
+ /**
+ * Original hook name: wp_prepare_attachment_for_js
+ */
+ public static final String WP_PREPARE_ATTACHMENT_FOR_JS = "wp_prepare_attachment_for_js";
+
+ /**
+ * Original hook name: wp_prepare_revision_for_js
+ */
+ public static final String WP_PREPARE_REVISION_FOR_JS = "wp_prepare_revision_for_js";
+
+ /**
+ * Original hook name: wp_prepare_themes_for_js
+ */
+ public static final String WP_PREPARE_THEMES_FOR_JS = "wp_prepare_themes_for_js";
+
+ /**
+ * Original hook name: wp_prevent_unsupported_mime_type_uploads
+ */
+ public static final String WP_PREVENT_UNSUPPORTED_MIME_TYPE_UPLOADS = "wp_prevent_unsupported_mime_type_uploads";
+
+ /**
+ * Original hook name: wp_print_footer_scripts
+ */
+ public static final String WP_PRINT_FOOTER_SCRIPTS = "wp_print_footer_scripts";
+
+ /**
+ * Original hook name: wp_print_scripts
+ */
+ public static final String WP_PRINT_SCRIPTS = "wp_print_scripts";
+
+ /**
+ * Original hook name: wp_print_styles
+ */
+ public static final String WP_PRINT_STYLES = "wp_print_styles";
+
+ /**
+ * Original hook name: wp_privacy_additional_user_profile_data
+ */
+ public static final String WP_PRIVACY_ADDITIONAL_USER_PROFILE_DATA = "wp_privacy_additional_user_profile_data";
+
+ /**
+ * Original hook name: wp_privacy_anonymize_data
+ */
+ public static final String WP_PRIVACY_ANONYMIZE_DATA = "wp_privacy_anonymize_data";
+
+ /**
+ * Original hook name: wp_privacy_export_expiration
+ */
+ public static final String WP_PRIVACY_EXPORT_EXPIRATION = "wp_privacy_export_expiration";
+
+ /**
+ * Original hook name: wp_privacy_exports_dir
+ */
+ public static final String WP_PRIVACY_EXPORTS_DIR = "wp_privacy_exports_dir";
+
+ /**
+ * Original hook name: wp_privacy_exports_url
+ */
+ public static final String WP_PRIVACY_EXPORTS_URL = "wp_privacy_exports_url";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_email_content
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EMAIL_CONTENT = "wp_privacy_personal_data_email_content";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_email_headers
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EMAIL_HEADERS = "wp_privacy_personal_data_email_headers";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_email_subject
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EMAIL_SUBJECT = "wp_privacy_personal_data_email_subject";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_email_to
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EMAIL_TO = "wp_privacy_personal_data_email_to";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_erased
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_ERASED = "wp_privacy_personal_data_erased";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_erasers
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_ERASERS = "wp_privacy_personal_data_erasers";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_erasure_page
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_ERASURE_PAGE = "wp_privacy_personal_data_erasure_page";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_export_file
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EXPORT_FILE = "wp_privacy_personal_data_export_file";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_export_file_created
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EXPORT_FILE_CREATED = "wp_privacy_personal_data_export_file_created";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_export_page
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EXPORT_PAGE = "wp_privacy_personal_data_export_page";
+
+ /**
+ * Original hook name: wp_privacy_personal_data_exporters
+ */
+ public static final String WP_PRIVACY_PERSONAL_DATA_EXPORTERS = "wp_privacy_personal_data_exporters";
+
+ /**
+ * Original hook name: wp_protected_ajax_actions
+ */
+ public static final String WP_PROTECTED_AJAX_ACTIONS = "wp_protected_ajax_actions";
+
+ /**
+ * Original hook name: wp_query_search_exclusion_prefix
+ */
+ public static final String WP_QUERY_SEARCH_EXCLUSION_PREFIX = "wp_query_search_exclusion_prefix";
+
+ /**
+ * Original hook name: wp_read_audio_metadata
+ */
+ public static final String WP_READ_AUDIO_METADATA = "wp_read_audio_metadata";
+
+ /**
+ * Original hook name: wp_read_image_metadata
+ */
+ public static final String WP_READ_IMAGE_METADATA = "wp_read_image_metadata";
+
+ /**
+ * Original hook name: wp_read_image_metadata_types
+ */
+ public static final String WP_READ_IMAGE_METADATA_TYPES = "wp_read_image_metadata_types";
+
+ /**
+ * Original hook name: wp_read_video_metadata
+ */
+ public static final String WP_READ_VIDEO_METADATA = "wp_read_video_metadata";
+
+ /**
+ * Original hook name: wp_redirect
+ */
+ public static final String WP_REDIRECT = "wp_redirect";
+
+ /**
+ * Original hook name: wp_redirect_status
+ */
+ public static final String WP_REDIRECT_STATUS = "wp_redirect_status";
+
+ /**
+ * Original hook name: wp_refresh_nonces
+ */
+ public static final String WP_REFRESH_NONCES = "wp_refresh_nonces";
+
+ /**
+ * Original hook name: wp_register_ability_args
+ */
+ public static final String WP_REGISTER_ABILITY_ARGS = "wp_register_ability_args";
+
+ /**
+ * Original hook name: wp_register_ability_category_args
+ */
+ public static final String WP_REGISTER_ABILITY_CATEGORY_ARGS = "wp_register_ability_category_args";
+
+ /**
+ * Original hook name: wp_register_sidebar_widget
+ */
+ public static final String WP_REGISTER_SIDEBAR_WIDGET = "wp_register_sidebar_widget";
+
+ /**
+ * Original hook name: wp_required_field_indicator
+ */
+ public static final String WP_REQUIRED_FIELD_INDICATOR = "wp_required_field_indicator";
+
+ /**
+ * Original hook name: wp_required_field_message
+ */
+ public static final String WP_REQUIRED_FIELD_MESSAGE = "wp_required_field_message";
+
+ /**
+ * Original hook name: wp_resource_hints
+ */
+ public static final String WP_RESOURCE_HINTS = "wp_resource_hints";
+
+ /**
+ * Original hook name: wp_rest_search_handlers
+ */
+ public static final String WP_REST_SEARCH_HANDLERS = "wp_rest_search_handlers";
+
+ /**
+ * Original hook name: wp_rest_server_class
+ */
+ public static final String WP_REST_SERVER_CLASS = "wp_rest_server_class";
+
+ /**
+ * Original hook name: wp_restore_post_revision
+ */
+ public static final String WP_RESTORE_POST_REVISION = "wp_restore_post_revision";
+
+ /**
+ * Original hook name: wp_revisions_to_keep
+ */
+ public static final String WP_REVISIONS_TO_KEEP = "wp_revisions_to_keep";
+
+ /**
+ * Original hook name: wp_robots
+ */
+ public static final String WP_ROBOTS = "wp_robots";
+
+ /**
+ * Original hook name: wp_roles_init
+ */
+ public static final String WP_ROLES_INIT = "wp_roles_init";
+
+ /**
+ * Original hook name: wp_safe_redirect_fallback
+ */
+ public static final String WP_SAFE_REDIRECT_FALLBACK = "wp_safe_redirect_fallback";
+
+ /**
+ * Original hook name: wp_save_image_editor_file
+ */
+ public static final String WP_SAVE_IMAGE_EDITOR_FILE = "wp_save_image_editor_file";
+
+ /**
+ * Original hook name: wp_save_image_file
+ */
+ public static final String WP_SAVE_IMAGE_FILE = "wp_save_image_file";
+
+ /**
+ * Original hook name: wp_save_post_revision_check_for_changes
+ */
+ public static final String WP_SAVE_POST_REVISION_CHECK_FOR_CHANGES = "wp_save_post_revision_check_for_changes";
+
+ /**
+ * Original hook name: wp_save_post_revision_post_has_changed
+ */
+ public static final String WP_SAVE_POST_REVISION_POST_HAS_CHANGED = "wp_save_post_revision_post_has_changed";
+
+ /**
+ * Original hook name: wp_save_post_revision_revisions_before_deletion
+ */
+ public static final String WP_SAVE_POST_REVISION_REVISIONS_BEFORE_DELETION = "wp_save_post_revision_revisions_before_deletion";
+
+ /**
+ * Original hook name: wp_script_attributes
+ */
+ public static final String WP_SCRIPT_ATTRIBUTES = "wp_script_attributes";
+
+ /**
+ * Original hook name: wp_search_stopwords
+ */
+ public static final String WP_SEARCH_STOPWORDS = "wp_search_stopwords";
+
+ /**
+ * Original hook name: wp_send_new_user_notification_to_admin
+ */
+ public static final String WP_SEND_NEW_USER_NOTIFICATION_TO_ADMIN = "wp_send_new_user_notification_to_admin";
+
+ /**
+ * Original hook name: wp_send_new_user_notification_to_user
+ */
+ public static final String WP_SEND_NEW_USER_NOTIFICATION_TO_USER = "wp_send_new_user_notification_to_user";
+
+ /**
+ * Original hook name: wp_set_comment_status
+ */
+ public static final String WP_SET_COMMENT_STATUS = "wp_set_comment_status";
+
+ /**
+ * Original hook name: wp_set_password
+ */
+ public static final String WP_SET_PASSWORD = "wp_set_password";
+
+ /**
+ * Original hook name: wp_setup_nav_menu_item
+ */
+ public static final String WP_SETUP_NAV_MENU_ITEM = "wp_setup_nav_menu_item";
+
+ /**
+ * Original hook name: wp_should_handle_php_error
+ */
+ public static final String WP_SHOULD_HANDLE_PHP_ERROR = "wp_should_handle_php_error";
+
+ /**
+ * Original hook name: wp_should_output_buffer_template_for_enhancement
+ */
+ public static final String WP_SHOULD_OUTPUT_BUFFER_TEMPLATE_FOR_ENHANCEMENT = "wp_should_output_buffer_template_for_enhancement";
+
+ /**
+ * Original hook name: wp_should_replace_insecure_home_url
+ */
+ public static final String WP_SHOULD_REPLACE_INSECURE_HOME_URL = "wp_should_replace_insecure_home_url";
+
+ /**
+ * Original hook name: wp_should_upgrade_global_tables
+ */
+ public static final String WP_SHOULD_UPGRADE_GLOBAL_TABLES = "wp_should_upgrade_global_tables";
+
+ /**
+ * Original hook name: wp_signature_hosts
+ */
+ public static final String WP_SIGNATURE_HOSTS = "wp_signature_hosts";
+
+ /**
+ * Original hook name: wp_signature_softfail
+ */
+ public static final String WP_SIGNATURE_SOFTFAIL = "wp_signature_softfail";
+
+ /**
+ * Original hook name: wp_signature_url
+ */
+ public static final String WP_SIGNATURE_URL = "wp_signature_url";
+
+ /**
+ * Original hook name: wp_signup_location
+ */
+ public static final String WP_SIGNUP_LOCATION = "wp_signup_location";
+
+ /**
+ * Original hook name: wp_sitemaps_add_provider
+ */
+ public static final String WP_SITEMAPS_ADD_PROVIDER = "wp_sitemaps_add_provider";
+
+ /**
+ * Original hook name: wp_sitemaps_enabled
+ */
+ public static final String WP_SITEMAPS_ENABLED = "wp_sitemaps_enabled";
+
+ /**
+ * Original hook name: wp_sitemaps_index_entry
+ */
+ public static final String WP_SITEMAPS_INDEX_ENTRY = "wp_sitemaps_index_entry";
+
+ /**
+ * Original hook name: wp_sitemaps_init
+ */
+ public static final String WP_SITEMAPS_INIT = "wp_sitemaps_init";
+
+ /**
+ * Original hook name: wp_sitemaps_max_urls
+ */
+ public static final String WP_SITEMAPS_MAX_URLS = "wp_sitemaps_max_urls";
+
+ /**
+ * Original hook name: wp_sitemaps_post_types
+ */
+ public static final String WP_SITEMAPS_POST_TYPES = "wp_sitemaps_post_types";
+
+ /**
+ * Original hook name: wp_sitemaps_posts_entry
+ */
+ public static final String WP_SITEMAPS_POSTS_ENTRY = "wp_sitemaps_posts_entry";
+
+ /**
+ * Original hook name: wp_sitemaps_posts_pre_max_num_pages
+ */
+ public static final String WP_SITEMAPS_POSTS_PRE_MAX_NUM_PAGES = "wp_sitemaps_posts_pre_max_num_pages";
+
+ /**
+ * Original hook name: wp_sitemaps_posts_pre_url_list
+ */
+ public static final String WP_SITEMAPS_POSTS_PRE_URL_LIST = "wp_sitemaps_posts_pre_url_list";
+
+ /**
+ * Original hook name: wp_sitemaps_posts_query_args
+ */
+ public static final String WP_SITEMAPS_POSTS_QUERY_ARGS = "wp_sitemaps_posts_query_args";
+
+ /**
+ * Original hook name: wp_sitemaps_posts_show_on_front_entry
+ */
+ public static final String WP_SITEMAPS_POSTS_SHOW_ON_FRONT_ENTRY = "wp_sitemaps_posts_show_on_front_entry";
+
+ /**
+ * Original hook name: wp_sitemaps_stylesheet_content
+ */
+ public static final String WP_SITEMAPS_STYLESHEET_CONTENT = "wp_sitemaps_stylesheet_content";
+
+ /**
+ * Original hook name: wp_sitemaps_stylesheet_css
+ */
+ public static final String WP_SITEMAPS_STYLESHEET_CSS = "wp_sitemaps_stylesheet_css";
+
+ /**
+ * Original hook name: wp_sitemaps_stylesheet_index_content
+ */
+ public static final String WP_SITEMAPS_STYLESHEET_INDEX_CONTENT = "wp_sitemaps_stylesheet_index_content";
+
+ /**
+ * Original hook name: wp_sitemaps_stylesheet_index_url
+ */
+ public static final String WP_SITEMAPS_STYLESHEET_INDEX_URL = "wp_sitemaps_stylesheet_index_url";
+
+ /**
+ * Original hook name: wp_sitemaps_stylesheet_url
+ */
+ public static final String WP_SITEMAPS_STYLESHEET_URL = "wp_sitemaps_stylesheet_url";
+
+ /**
+ * Original hook name: wp_sitemaps_taxonomies
+ */
+ public static final String WP_SITEMAPS_TAXONOMIES = "wp_sitemaps_taxonomies";
+
+ /**
+ * Original hook name: wp_sitemaps_taxonomies_entry
+ */
+ public static final String WP_SITEMAPS_TAXONOMIES_ENTRY = "wp_sitemaps_taxonomies_entry";
+
+ /**
+ * Original hook name: wp_sitemaps_taxonomies_pre_max_num_pages
+ */
+ public static final String WP_SITEMAPS_TAXONOMIES_PRE_MAX_NUM_PAGES = "wp_sitemaps_taxonomies_pre_max_num_pages";
+
+ /**
+ * Original hook name: wp_sitemaps_taxonomies_pre_url_list
+ */
+ public static final String WP_SITEMAPS_TAXONOMIES_PRE_URL_LIST = "wp_sitemaps_taxonomies_pre_url_list";
+
+ /**
+ * Original hook name: wp_sitemaps_taxonomies_query_args
+ */
+ public static final String WP_SITEMAPS_TAXONOMIES_QUERY_ARGS = "wp_sitemaps_taxonomies_query_args";
+
+ /**
+ * Original hook name: wp_sitemaps_users_entry
+ */
+ public static final String WP_SITEMAPS_USERS_ENTRY = "wp_sitemaps_users_entry";
+
+ /**
+ * Original hook name: wp_sitemaps_users_pre_max_num_pages
+ */
+ public static final String WP_SITEMAPS_USERS_PRE_MAX_NUM_PAGES = "wp_sitemaps_users_pre_max_num_pages";
+
+ /**
+ * Original hook name: wp_sitemaps_users_pre_url_list
+ */
+ public static final String WP_SITEMAPS_USERS_PRE_URL_LIST = "wp_sitemaps_users_pre_url_list";
+
+ /**
+ * Original hook name: wp_sitemaps_users_query_args
+ */
+ public static final String WP_SITEMAPS_USERS_QUERY_ARGS = "wp_sitemaps_users_query_args";
+
+ /**
+ * Original hook name: wp_spaces_regexp
+ */
+ public static final String WP_SPACES_REGEXP = "wp_spaces_regexp";
+
+ /**
+ * Original hook name: wp_speculation_rules_configuration
+ */
+ public static final String WP_SPECULATION_RULES_CONFIGURATION = "wp_speculation_rules_configuration";
+
+ /**
+ * Original hook name: wp_speculation_rules_href_exclude_paths
+ */
+ public static final String WP_SPECULATION_RULES_HREF_EXCLUDE_PATHS = "wp_speculation_rules_href_exclude_paths";
+
+ /**
+ * Original hook name: wp_sprintf
+ */
+ public static final String WP_SPRINTF = "wp_sprintf";
+
+ /**
+ * Original hook name: wp_sprintf_l
+ */
+ public static final String WP_SPRINTF_L = "wp_sprintf_l";
+
+ /**
+ * Original hook name: wp_tag_cloud
+ */
+ public static final String WP_TAG_CLOUD = "wp_tag_cloud";
+
+ /**
+ * Original hook name: wp_targeted_link_rel
+ */
+ public static final String WP_TARGETED_LINK_REL = "wp_targeted_link_rel";
+
+ /**
+ * Original hook name: wp_template_enhancement_output_buffer
+ */
+ public static final String WP_TEMPLATE_ENHANCEMENT_OUTPUT_BUFFER = "wp_template_enhancement_output_buffer";
+
+ /**
+ * Original hook name: wp_template_enhancement_output_buffer_started
+ */
+ public static final String WP_TEMPLATE_ENHANCEMENT_OUTPUT_BUFFER_STARTED = "wp_template_enhancement_output_buffer_started";
+
+ /**
+ * Original hook name: wp_terms_checklist_args
+ */
+ public static final String WP_TERMS_CHECKLIST_ARGS = "wp_terms_checklist_args";
+
+ /**
+ * Original hook name: wp_theme_editor_filetypes
+ */
+ public static final String WP_THEME_EDITOR_FILETYPES = "wp_theme_editor_filetypes";
+
+ /**
+ * Original hook name: wp_theme_files_cache_ttl
+ */
+ public static final String WP_THEME_FILES_CACHE_TTL = "wp_theme_files_cache_ttl";
+
+ /**
+ * Original hook name: wp_theme_json_data_blocks
+ */
+ public static final String WP_THEME_JSON_DATA_BLOCKS = "wp_theme_json_data_blocks";
+
+ /**
+ * Original hook name: wp_theme_json_data_default
+ */
+ public static final String WP_THEME_JSON_DATA_DEFAULT = "wp_theme_json_data_default";
+
+ /**
+ * Original hook name: wp_theme_json_data_theme
+ */
+ public static final String WP_THEME_JSON_DATA_THEME = "wp_theme_json_data_theme";
+
+ /**
+ * Original hook name: wp_theme_json_data_user
+ */
+ public static final String WP_THEME_JSON_DATA_USER = "wp_theme_json_data_user";
+
+ /**
+ * Original hook name: wp_theme_json_get_style_nodes
+ */
+ public static final String WP_THEME_JSON_GET_STYLE_NODES = "wp_theme_json_get_style_nodes";
+
+ /**
+ * Original hook name: wp_thumbnail_creation_size_limit
+ */
+ public static final String WP_THUMBNAIL_CREATION_SIZE_LIMIT = "wp_thumbnail_creation_size_limit";
+
+ /**
+ * Original hook name: wp_thumbnail_max_side_length
+ */
+ public static final String WP_THUMBNAIL_MAX_SIDE_LENGTH = "wp_thumbnail_max_side_length";
+
+ /**
+ * Original hook name: wp_tiny_mce_init
+ */
+ public static final String WP_TINY_MCE_INIT = "wp_tiny_mce_init";
+
+ /**
+ * Original hook name: wp_title
+ */
+ public static final String WP_TITLE = "wp_title";
+
+ /**
+ * Original hook name: wp_title_parts
+ */
+ public static final String WP_TITLE_PARTS = "wp_title_parts";
+
+ /**
+ * Original hook name: wp_title_rss
+ */
+ public static final String WP_TITLE_RSS = "wp_title_rss";
+
+ /**
+ * Original hook name: wp_trash_post
+ */
+ public static final String WP_TRASH_POST = "wp_trash_post";
+
+ /**
+ * Original hook name: wp_trigger_error_run
+ */
+ public static final String WP_TRIGGER_ERROR_RUN = "wp_trigger_error_run";
+
+ /**
+ * Original hook name: wp_trim_excerpt
+ */
+ public static final String WP_TRIM_EXCERPT = "wp_trim_excerpt";
+
+ /**
+ * Original hook name: wp_trim_words
+ */
+ public static final String WP_TRIM_WORDS = "wp_trim_words";
+
+ /**
+ * Original hook name: wp_trusted_keys
+ */
+ public static final String WP_TRUSTED_KEYS = "wp_trusted_keys";
+
+ /**
+ * Original hook name: wp_uninitialize_site
+ */
+ public static final String WP_UNINITIALIZE_SITE = "wp_uninitialize_site";
+
+ /**
+ * Original hook name: wp_unique_filename
+ */
+ public static final String WP_UNIQUE_FILENAME = "wp_unique_filename";
+
+ /**
+ * Original hook name: wp_unique_post_slug
+ */
+ public static final String WP_UNIQUE_POST_SLUG = "wp_unique_post_slug";
+
+ /**
+ * Original hook name: wp_unique_post_slug_is_bad_attachment_slug
+ */
+ public static final String WP_UNIQUE_POST_SLUG_IS_BAD_ATTACHMENT_SLUG = "wp_unique_post_slug_is_bad_attachment_slug";
+
+ /**
+ * Original hook name: wp_unique_post_slug_is_bad_flat_slug
+ */
+ public static final String WP_UNIQUE_POST_SLUG_IS_BAD_FLAT_SLUG = "wp_unique_post_slug_is_bad_flat_slug";
+
+ /**
+ * Original hook name: wp_unique_post_slug_is_bad_hierarchical_slug
+ */
+ public static final String WP_UNIQUE_POST_SLUG_IS_BAD_HIERARCHICAL_SLUG = "wp_unique_post_slug_is_bad_hierarchical_slug";
+
+ /**
+ * Original hook name: wp_unique_term_slug
+ */
+ public static final String WP_UNIQUE_TERM_SLUG = "wp_unique_term_slug";
+
+ /**
+ * Original hook name: wp_unique_term_slug_is_bad_slug
+ */
+ public static final String WP_UNIQUE_TERM_SLUG_IS_BAD_SLUG = "wp_unique_term_slug_is_bad_slug";
+
+ /**
+ * Original hook name: wp_unregister_sidebar_widget
+ */
+ public static final String WP_UNREGISTER_SIDEBAR_WIDGET = "wp_unregister_sidebar_widget";
+
+ /**
+ * Original hook name: wp_untrash_post_status
+ */
+ public static final String WP_UNTRASH_POST_STATUS = "wp_untrash_post_status";
+
+ /**
+ * Original hook name: wp_update_application_password
+ */
+ public static final String WP_UPDATE_APPLICATION_PASSWORD = "wp_update_application_password";
+
+ /**
+ * Original hook name: wp_update_attachment_metadata
+ */
+ public static final String WP_UPDATE_ATTACHMENT_METADATA = "wp_update_attachment_metadata";
+
+ /**
+ * Original hook name: wp_update_comment_count
+ */
+ public static final String WP_UPDATE_COMMENT_COUNT = "wp_update_comment_count";
+
+ /**
+ * Original hook name: wp_update_comment_data
+ */
+ public static final String WP_UPDATE_COMMENT_DATA = "wp_update_comment_data";
+
+ /**
+ * Original hook name: wp_update_comment_type_batch_size
+ */
+ public static final String WP_UPDATE_COMMENT_TYPE_BATCH_SIZE = "wp_update_comment_type_batch_size";
+
+ /**
+ * Original hook name: wp_update_https_url
+ */
+ public static final String WP_UPDATE_HTTPS_URL = "wp_update_https_url";
+
+ /**
+ * Original hook name: wp_update_nav_menu
+ */
+ public static final String WP_UPDATE_NAV_MENU = "wp_update_nav_menu";
+
+ /**
+ * Original hook name: wp_update_nav_menu_item
+ */
+ public static final String WP_UPDATE_NAV_MENU_ITEM = "wp_update_nav_menu_item";
+
+ /**
+ * Original hook name: wp_update_php_url
+ */
+ public static final String WP_UPDATE_PHP_URL = "wp_update_php_url";
+
+ /**
+ * Original hook name: wp_update_site
+ */
+ public static final String WP_UPDATE_SITE = "wp_update_site";
+
+ /**
+ * Original hook name: wp_update_term_data
+ */
+ public static final String WP_UPDATE_TERM_DATA = "wp_update_term_data";
+
+ /**
+ * Original hook name: wp_update_term_parent
+ */
+ public static final String WP_UPDATE_TERM_PARENT = "wp_update_term_parent";
+
+ /**
+ * Original hook name: wp_update_user
+ */
+ public static final String WP_UPDATE_USER = "wp_update_user";
+
+ /**
+ * Original hook name: wp_upgrade
+ */
+ public static final String WP_UPGRADE = "wp_upgrade";
+
+ /**
+ * Original hook name: wp_upload_bits
+ */
+ public static final String WP_UPLOAD_BITS = "wp_upload_bits";
+
+ /**
+ * Original hook name: wp_upload_resize
+ */
+ public static final String WP_UPLOAD_RESIZE = "wp_upload_resize";
+
+ /**
+ * Original hook name: wp_upload_tabs
+ */
+ public static final String WP_UPLOAD_TABS = "wp_upload_tabs";
+
+ /**
+ * Original hook name: wp_user_dashboard_setup
+ */
+ public static final String WP_USER_DASHBOARD_SETUP = "wp_user_dashboard_setup";
+
+ /**
+ * Original hook name: wp_user_dashboard_widgets
+ */
+ public static final String WP_USER_DASHBOARD_WIDGETS = "wp_user_dashboard_widgets";
+
+ /**
+ * Original hook name: wp_using_themes
+ */
+ public static final String WP_USING_THEMES = "wp_using_themes";
+
+ /**
+ * Original hook name: wp_validate_site_data
+ */
+ public static final String WP_VALIDATE_SITE_DATA = "wp_validate_site_data";
+
+ /**
+ * Original hook name: wp_validate_site_deletion
+ */
+ public static final String WP_VALIDATE_SITE_DELETION = "wp_validate_site_deletion";
+
+ /**
+ * Original hook name: wp_verify_nonce_failed
+ */
+ public static final String WP_VERIFY_NONCE_FAILED = "wp_verify_nonce_failed";
+
+ /**
+ * Original hook name: wp_video_embed_handler
+ */
+ public static final String WP_VIDEO_EMBED_HANDLER = "wp_video_embed_handler";
+
+ /**
+ * Original hook name: wp_video_extensions
+ */
+ public static final String WP_VIDEO_EXTENSIONS = "wp_video_extensions";
+
+ /**
+ * Original hook name: wp_video_shortcode
+ */
+ public static final String WP_VIDEO_SHORTCODE = "wp_video_shortcode";
+
+ /**
+ * Original hook name: wp_video_shortcode_class
+ */
+ public static final String WP_VIDEO_SHORTCODE_CLASS = "wp_video_shortcode_class";
+
+ /**
+ * Original hook name: wp_video_shortcode_handler
+ */
+ public static final String WP_VIDEO_SHORTCODE_HANDLER = "wp_video_shortcode_handler";
+
+ /**
+ * Original hook name: wp_video_shortcode_library
+ */
+ public static final String WP_VIDEO_SHORTCODE_LIBRARY = "wp_video_shortcode_library";
+
+ /**
+ * Original hook name: wp_video_shortcode_override
+ */
+ public static final String WP_VIDEO_SHORTCODE_OVERRIDE = "wp_video_shortcode_override";
+
+ /**
+ * Original hook name: wp_xmlrpc_server_class
+ */
+ public static final String WP_XMLRPC_SERVER_CLASS = "wp_xmlrpc_server_class";
+
+ /**
+ * Original hook name: wp_{$post->post_type}_revisions_to_keep
+ */
+ public static final String WP_POST_POST_TYPE_REVISIONS_TO_KEEP = "wp_{$post->post_type}_revisions_to_keep";
+
+ /**
+ * Original hook name: wpmu_activate_blog
+ */
+ public static final String WPMU_ACTIVATE_BLOG = "wpmu_activate_blog";
+
+ /**
+ * Original hook name: wpmu_activate_user
+ */
+ public static final String WPMU_ACTIVATE_USER = "wpmu_activate_user";
+
+ /**
+ * Original hook name: wpmu_active_signup
+ */
+ public static final String WPMU_ACTIVE_SIGNUP = "wpmu_active_signup";
+
+ /**
+ * Original hook name: wpmu_blog_updated
+ */
+ public static final String WPMU_BLOG_UPDATED = "wpmu_blog_updated";
+
+ /**
+ * Original hook name: wpmu_blogs_columns
+ */
+ public static final String WPMU_BLOGS_COLUMNS = "wpmu_blogs_columns";
+
+ /**
+ * Original hook name: wpmu_delete_blog_upload_dir
+ */
+ public static final String WPMU_DELETE_BLOG_UPLOAD_DIR = "wpmu_delete_blog_upload_dir";
+
+ /**
+ * Original hook name: wpmu_delete_user
+ */
+ public static final String WPMU_DELETE_USER = "wpmu_delete_user";
+
+ /**
+ * Original hook name: wpmu_drop_tables
+ */
+ public static final String WPMU_DROP_TABLES = "wpmu_drop_tables";
+
+ /**
+ * Original hook name: wpmu_new_blog
+ */
+ public static final String WPMU_NEW_BLOG = "wpmu_new_blog";
+
+ /**
+ * Original hook name: wpmu_new_user
+ */
+ public static final String WPMU_NEW_USER = "wpmu_new_user";
+
+ /**
+ * Original hook name: wpmu_options
+ */
+ public static final String WPMU_OPTIONS = "wpmu_options";
+
+ /**
+ * Original hook name: wpmu_signup_blog_notification
+ */
+ public static final String WPMU_SIGNUP_BLOG_NOTIFICATION = "wpmu_signup_blog_notification";
+
+ /**
+ * Original hook name: wpmu_signup_blog_notification_email
+ */
+ public static final String WPMU_SIGNUP_BLOG_NOTIFICATION_EMAIL = "wpmu_signup_blog_notification_email";
+
+ /**
+ * Original hook name: wpmu_signup_blog_notification_subject
+ */
+ public static final String WPMU_SIGNUP_BLOG_NOTIFICATION_SUBJECT = "wpmu_signup_blog_notification_subject";
+
+ /**
+ * Original hook name: wpmu_signup_user_notification
+ */
+ public static final String WPMU_SIGNUP_USER_NOTIFICATION = "wpmu_signup_user_notification";
+
+ /**
+ * Original hook name: wpmu_signup_user_notification_email
+ */
+ public static final String WPMU_SIGNUP_USER_NOTIFICATION_EMAIL = "wpmu_signup_user_notification_email";
+
+ /**
+ * Original hook name: wpmu_signup_user_notification_subject
+ */
+ public static final String WPMU_SIGNUP_USER_NOTIFICATION_SUBJECT = "wpmu_signup_user_notification_subject";
+
+ /**
+ * Original hook name: wpmu_update_blog_options
+ */
+ public static final String WPMU_UPDATE_BLOG_OPTIONS = "wpmu_update_blog_options";
+
+ /**
+ * Original hook name: wpmu_upgrade_page
+ */
+ public static final String WPMU_UPGRADE_PAGE = "wpmu_upgrade_page";
+
+ /**
+ * Original hook name: wpmu_upgrade_site
+ */
+ public static final String WPMU_UPGRADE_SITE = "wpmu_upgrade_site";
+
+ /**
+ * Original hook name: wpmu_users_columns
+ */
+ public static final String WPMU_USERS_COLUMNS = "wpmu_users_columns";
+
+ /**
+ * Original hook name: wpmu_validate_blog_signup
+ */
+ public static final String WPMU_VALIDATE_BLOG_SIGNUP = "wpmu_validate_blog_signup";
+
+ /**
+ * Original hook name: wpmu_validate_user_signup
+ */
+ public static final String WPMU_VALIDATE_USER_SIGNUP = "wpmu_validate_user_signup";
+
+ /**
+ * Original hook name: wpmu_welcome_notification
+ */
+ public static final String WPMU_WELCOME_NOTIFICATION = "wpmu_welcome_notification";
+
+ /**
+ * Original hook name: wpmu_welcome_user_notification
+ */
+ public static final String WPMU_WELCOME_USER_NOTIFICATION = "wpmu_welcome_user_notification";
+
+ /**
+ * Original hook name: wpmuadminedit
+ */
+ public static final String WPMUADMINEDIT = "wpmuadminedit";
+
+ /**
+ * Original hook name: wpmuadminresult
+ */
+ public static final String WPMUADMINRESULT = "wpmuadminresult";
+
+ /**
+ * Original hook name: wpmublogsaction
+ */
+ public static final String WPMUBLOGSACTION = "wpmublogsaction";
+
+ /**
+ * Original hook name: wpmueditblogaction
+ */
+ public static final String WPMUEDITBLOGACTION = "wpmueditblogaction";
+
+ /**
+ * Original hook name: write_your_story
+ */
+ public static final String WRITE_YOUR_STORY = "write_your_story";
+
+ /**
+ * Original hook name: wxr_export_skip_commentmeta
+ */
+ public static final String WXR_EXPORT_SKIP_COMMENTMETA = "wxr_export_skip_commentmeta";
+
+ /**
+ * Original hook name: wxr_export_skip_postmeta
+ */
+ public static final String WXR_EXPORT_SKIP_POSTMETA = "wxr_export_skip_postmeta";
+
+ /**
+ * Original hook name: wxr_export_skip_termmeta
+ */
+ public static final String WXR_EXPORT_SKIP_TERMMETA = "wxr_export_skip_termmeta";
+
+ /**
+ * Original hook name: x_redirect_by
+ */
+ public static final String X_REDIRECT_BY = "x_redirect_by";
+
+ /**
+ * Original hook name: xmlrpc_allow_anonymous_comments
+ */
+ public static final String XMLRPC_ALLOW_ANONYMOUS_COMMENTS = "xmlrpc_allow_anonymous_comments";
+
+ /**
+ * Original hook name: xmlrpc_blog_options
+ */
+ public static final String XMLRPC_BLOG_OPTIONS = "xmlrpc_blog_options";
+
+ /**
+ * Original hook name: xmlrpc_call
+ */
+ public static final String XMLRPC_CALL = "xmlrpc_call";
+
+ /**
+ * Original hook name: xmlrpc_call_success_blogger_deletePost
+ */
+ public static final String XMLRPC_CALL_SUCCESS_BLOGGER_DELETEPOST = "xmlrpc_call_success_blogger_deletePost";
+
+ /**
+ * Original hook name: xmlrpc_call_success_blogger_editPost
+ */
+ public static final String XMLRPC_CALL_SUCCESS_BLOGGER_EDITPOST = "xmlrpc_call_success_blogger_editPost";
+
+ /**
+ * Original hook name: xmlrpc_call_success_blogger_newPost
+ */
+ public static final String XMLRPC_CALL_SUCCESS_BLOGGER_NEWPOST = "xmlrpc_call_success_blogger_newPost";
+
+ /**
+ * Original hook name: xmlrpc_call_success_mw_editPost
+ */
+ public static final String XMLRPC_CALL_SUCCESS_MW_EDITPOST = "xmlrpc_call_success_mw_editPost";
+
+ /**
+ * Original hook name: xmlrpc_call_success_mw_newMediaObject
+ */
+ public static final String XMLRPC_CALL_SUCCESS_MW_NEWMEDIAOBJECT = "xmlrpc_call_success_mw_newMediaObject";
+
+ /**
+ * Original hook name: xmlrpc_call_success_mw_newPost
+ */
+ public static final String XMLRPC_CALL_SUCCESS_MW_NEWPOST = "xmlrpc_call_success_mw_newPost";
+
+ /**
+ * Original hook name: xmlrpc_call_success_wp_deleteCategory
+ */
+ public static final String XMLRPC_CALL_SUCCESS_WP_DELETECATEGORY = "xmlrpc_call_success_wp_deleteCategory";
+
+ /**
+ * Original hook name: xmlrpc_call_success_wp_deleteComment
+ */
+ public static final String XMLRPC_CALL_SUCCESS_WP_DELETECOMMENT = "xmlrpc_call_success_wp_deleteComment";
+
+ /**
+ * Original hook name: xmlrpc_call_success_wp_deletePage
+ */
+ public static final String XMLRPC_CALL_SUCCESS_WP_DELETEPAGE = "xmlrpc_call_success_wp_deletePage";
+
+ /**
+ * Original hook name: xmlrpc_call_success_wp_editComment
+ */
+ public static final String XMLRPC_CALL_SUCCESS_WP_EDITCOMMENT = "xmlrpc_call_success_wp_editComment";
+
+ /**
+ * Original hook name: xmlrpc_call_success_wp_newCategory
+ */
+ public static final String XMLRPC_CALL_SUCCESS_WP_NEWCATEGORY = "xmlrpc_call_success_wp_newCategory";
+
+ /**
+ * Original hook name: xmlrpc_call_success_wp_newComment
+ */
+ public static final String XMLRPC_CALL_SUCCESS_WP_NEWCOMMENT = "xmlrpc_call_success_wp_newComment";
+
+ /**
+ * Original hook name: xmlrpc_chunk_parsing_size
+ */
+ public static final String XMLRPC_CHUNK_PARSING_SIZE = "xmlrpc_chunk_parsing_size";
+
+ /**
+ * Original hook name: xmlrpc_default_post_fields
+ */
+ public static final String XMLRPC_DEFAULT_POST_FIELDS = "xmlrpc_default_post_fields";
+
+ /**
+ * Original hook name: xmlrpc_default_posttype_fields
+ */
+ public static final String XMLRPC_DEFAULT_POSTTYPE_FIELDS = "xmlrpc_default_posttype_fields";
+
+ /**
+ * Original hook name: xmlrpc_default_revision_fields
+ */
+ public static final String XMLRPC_DEFAULT_REVISION_FIELDS = "xmlrpc_default_revision_fields";
+
+ /**
+ * Original hook name: xmlrpc_default_taxonomy_fields
+ */
+ public static final String XMLRPC_DEFAULT_TAXONOMY_FIELDS = "xmlrpc_default_taxonomy_fields";
+
+ /**
+ * Original hook name: xmlrpc_default_user_fields
+ */
+ public static final String XMLRPC_DEFAULT_USER_FIELDS = "xmlrpc_default_user_fields";
+
+ /**
+ * Original hook name: xmlrpc_element_limit
+ */
+ public static final String XMLRPC_ELEMENT_LIMIT = "xmlrpc_element_limit";
+
+ /**
+ * Original hook name: xmlrpc_enabled
+ */
+ public static final String XMLRPC_ENABLED = "xmlrpc_enabled";
+
+ /**
+ * Original hook name: xmlrpc_login_error
+ */
+ public static final String XMLRPC_LOGIN_ERROR = "xmlrpc_login_error";
+
+ /**
+ * Original hook name: xmlrpc_methods
+ */
+ public static final String XMLRPC_METHODS = "xmlrpc_methods";
+
+ /**
+ * Original hook name: xmlrpc_pingback_error
+ */
+ public static final String XMLRPC_PINGBACK_ERROR = "xmlrpc_pingback_error";
+
+ /**
+ * Original hook name: xmlrpc_prepare_comment
+ */
+ public static final String XMLRPC_PREPARE_COMMENT = "xmlrpc_prepare_comment";
+
+ /**
+ * Original hook name: xmlrpc_prepare_media_item
+ */
+ public static final String XMLRPC_PREPARE_MEDIA_ITEM = "xmlrpc_prepare_media_item";
+
+ /**
+ * Original hook name: xmlrpc_prepare_page
+ */
+ public static final String XMLRPC_PREPARE_PAGE = "xmlrpc_prepare_page";
+
+ /**
+ * Original hook name: xmlrpc_prepare_post
+ */
+ public static final String XMLRPC_PREPARE_POST = "xmlrpc_prepare_post";
+
+ /**
+ * Original hook name: xmlrpc_prepare_post_type
+ */
+ public static final String XMLRPC_PREPARE_POST_TYPE = "xmlrpc_prepare_post_type";
+
+ /**
+ * Original hook name: xmlrpc_prepare_taxonomy
+ */
+ public static final String XMLRPC_PREPARE_TAXONOMY = "xmlrpc_prepare_taxonomy";
+
+ /**
+ * Original hook name: xmlrpc_prepare_term
+ */
+ public static final String XMLRPC_PREPARE_TERM = "xmlrpc_prepare_term";
+
+ /**
+ * Original hook name: xmlrpc_prepare_user
+ */
+ public static final String XMLRPC_PREPARE_USER = "xmlrpc_prepare_user";
+
+ /**
+ * Original hook name: xmlrpc_publish_post
+ */
+ public static final String XMLRPC_PUBLISH_POST = "xmlrpc_publish_post";
+
+ /**
+ * Original hook name: xmlrpc_rsd_apis
+ */
+ public static final String XMLRPC_RSD_APIS = "xmlrpc_rsd_apis";
+
+ /**
+ * Original hook name: xmlrpc_text_filters
+ */
+ public static final String XMLRPC_TEXT_FILTERS = "xmlrpc_text_filters";
+
+ /**
+ * Original hook name: xmlrpc_wp_insert_post_data
+ */
+ public static final String XMLRPC_WP_INSERT_POST_DATA = "xmlrpc_wp_insert_post_data";
+
+ /**
+ * Original hook name: year_link
+ */
+ public static final String YEAR_LINK = "year_link";
+
+ /**
+ * Original hook name: {$action}
+ */
+ public static final String ACTION = "{$action}";
+
+ /**
+ * Original hook name: {$action}_overrides
+ */
+ public static final String ACTION_OVERRIDES = "{$action}_overrides";
+
+ /**
+ * Original hook name: {$action}_prefilter
+ */
+ public static final String ACTION_PREFILTER = "{$action}_prefilter";
+
+ /**
+ * Original hook name: {$adjacent}_image_link
+ */
+ public static final String ADJACENT_IMAGE_LINK = "{$adjacent}_image_link";
+
+ /**
+ * Original hook name: {$adjacent}_post_link
+ */
+ public static final String ADJACENT_POST_LINK = "{$adjacent}_post_link";
+
+ /**
+ * Original hook name: {$adjacent}_post_rel_link
+ */
+ public static final String ADJACENT_POST_REL_LINK = "{$adjacent}_post_rel_link";
+
+ /**
+ * Original hook name: {$args[0]}
+ */
+ public static final String ARGS_0 = "{$args[0]}";
+
+ /**
+ * Original hook name: {$args}
+ */
+ public static final String ARGS = "{$args}";
+
+ /**
+ * Original hook name: {$arg}
+ */
+ public static final String ARG = "{$arg}";
+
+ /**
+ * Original hook name: {$boundary}_post_rel_link
+ */
+ public static final String BOUNDARY_POST_REL_LINK = "{$boundary}_post_rel_link";
+
+ /**
+ * Original hook name: {$callback}
+ */
+ public static final String CALLBACK = "{$callback}";
+
+ /**
+ * Original hook name: {$context}_memory_limit
+ */
+ public static final String CONTEXT_MEMORY_LIMIT = "{$context}_memory_limit";
+
+ /**
+ * Original hook name: {$field_no_prefix}_edit_pre
+ */
+ public static final String FIELD_NO_PREFIX_EDIT_PRE = "{$field_no_prefix}_edit_pre";
+
+ /**
+ * Original hook name: {$field_no_prefix}_save_pre
+ */
+ public static final String FIELD_NO_PREFIX_SAVE_PRE = "{$field_no_prefix}_save_pre";
+
+ /**
+ * Original hook name: {$field}
+ */
+ public static final String FIELD = "{$field}";
+
+ /**
+ * Original hook name: {$field}_pre
+ */
+ public static final String FIELD_PRE = "{$field}_pre";
+
+ /**
+ * Original hook name: {$hook_name}
+ */
+ public static final String HOOK_NAME = "{$hook_name}";
+
+ /**
+ * Original hook name: {$hook}
+ */
+ public static final String HOOK = "{$hook}";
+
+ /**
+ * Original hook name: {$new_status}_{$post->post_type}
+ */
+ public static final String NEW_STATUS_POST_POST_TYPE = "{$new_status}_{$post->post_type}";
+
+ /**
+ * Original hook name: {$old_status}_to_{$new_status}
+ */
+ public static final String OLD_STATUS_TO_NEW_STATUS = "{$old_status}_to_{$new_status}";
+
+ /**
+ * Original hook name: {$option}
+ */
+ public static final String OPTION = "{$option}";
+
+ /**
+ * Original hook name: {$page_hook}
+ */
+ public static final String PAGE_HOOK = "{$page_hook}";
+
+ /**
+ * Original hook name: {$per_page}
+ */
+ public static final String PER_PAGE = "{$per_page}";
+
+ /**
+ * Original hook name: {$permastructname}_rewrite_rules
+ */
+ public static final String PERMASTRUCTNAME_REWRITE_RULES = "{$permastructname}_rewrite_rules";
+
+ /**
+ * Original hook name: {$prefix}plugin_action_links
+ */
+ public static final String PREFIXPLUGIN_ACTION_LINKS = "{$prefix}plugin_action_links";
+
+ /**
+ * Original hook name: {$prefix}plugin_action_links_{$plugin_file}
+ */
+ public static final String PREFIXPLUGIN_ACTION_LINKS_PLUGIN_FILE = "{$prefix}plugin_action_links_{$plugin_file}";
+
+ /**
+ * Original hook name: {$tag}
+ */
+ public static final String TAG = "{$tag}";
+
+ /**
+ * Original hook name: {$taxonomy}_add_form
+ */
+ public static final String TAXONOMY_ADD_FORM = "{$taxonomy}_add_form";
+
+ /**
+ * Original hook name: {$taxonomy}_add_form_fields
+ */
+ public static final String TAXONOMY_ADD_FORM_FIELDS = "{$taxonomy}_add_form_fields";
+
+ /**
+ * Original hook name: {$taxonomy}_edit_form
+ */
+ public static final String TAXONOMY_EDIT_FORM = "{$taxonomy}_edit_form";
+
+ /**
+ * Original hook name: {$taxonomy}_edit_form_fields
+ */
+ public static final String TAXONOMY_EDIT_FORM_FIELDS = "{$taxonomy}_edit_form_fields";
+
+ /**
+ * Original hook name: {$taxonomy}_pre_add_form
+ */
+ public static final String TAXONOMY_PRE_ADD_FORM = "{$taxonomy}_pre_add_form";
+
+ /**
+ * Original hook name: {$taxonomy}_pre_edit_form
+ */
+ public static final String TAXONOMY_PRE_EDIT_FORM = "{$taxonomy}_pre_edit_form";
+
+ /**
+ * Original hook name: {$taxonomy}_row_actions
+ */
+ public static final String TAXONOMY_ROW_ACTIONS = "{$taxonomy}_row_actions";
+
+ /**
+ * Original hook name: {$taxonomy}_term_edit_form_tag
+ */
+ public static final String TAXONOMY_TERM_EDIT_FORM_TAG = "{$taxonomy}_term_edit_form_tag";
+
+ /**
+ * Original hook name: {$taxonomy}_term_edit_form_top
+ */
+ public static final String TAXONOMY_TERM_EDIT_FORM_TOP = "{$taxonomy}_term_edit_form_top";
+
+ /**
+ * Original hook name: {$taxonomy}_term_new_form_tag
+ */
+ public static final String TAXONOMY_TERM_NEW_FORM_TAG = "{$taxonomy}_term_new_form_tag";
+
+ /**
+ * Original hook name: {$taxonomy}_{$field_rss}
+ */
+ public static final String TAXONOMY_FIELD_RSS = "{$taxonomy}_{$field_rss}";
+
+ /**
+ * Original hook name: {$taxonomy}_{$field}
+ */
+ public static final String TAXONOMY_FIELD = "{$taxonomy}_{$field}";
+
+ /**
+ * Original hook name: {$taxonomy}_{$field}_rss
+ */
+ public static final String TAXONOMY_FIELD_RSS_2 = "{$taxonomy}_{$field}_rss";
+
+ /**
+ * Original hook name: {$template_type}_template_hierarchy
+ */
+ public static final String TEMPLATE_TYPE_TEMPLATE_HIERARCHY = "{$template_type}_template_hierarchy";
+
+ /**
+ * Original hook name: {$type}_send_to_editor_url
+ */
+ public static final String TYPE_SEND_TO_EDITOR_URL = "{$type}_send_to_editor_url";
+
+ /**
+ * Original hook name: {$type}_template
+ */
+ public static final String TYPE_TEMPLATE = "{$type}_template";
+
+ /**
+ * Original hook name: {$type}_template_hierarchy
+ */
+ public static final String TYPE_TEMPLATE_HIERARCHY = "{$type}_template_hierarchy";
+
+ /**
+ * Original hook name: {$type}_upload_iframe_src
+ */
+ public static final String TYPE_UPLOAD_IFRAME_SRC = "{$type}_upload_iframe_src";
+
+ /**
+ * Original hook name: {$value}
+ */
+ public static final String VALUE = "{$value}";
+
+}
diff --git a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/service/UserService.java b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/service/UserService.java
index 965c81a1..cab82ad9 100644
--- a/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/service/UserService.java
+++ b/sisvietnamvn_main/src/main/java/com/sisvietnamvn/web/service/UserService.java
@@ -41,16 +41,20 @@ public class UserService {
private final CacheManager cacheManager;
+ private final com.sisvietnamvn.web.hook.HookManager hookManager;
+
public UserService(
UserRepository userRepository,
PasswordEncoder passwordEncoder,
AuthorityRepository authorityRepository,
- CacheManager cacheManager
+ CacheManager cacheManager,
+ com.sisvietnamvn.web.hook.HookManager hookManager
) {
this.userRepository = userRepository;
this.passwordEncoder = passwordEncoder;
this.authorityRepository = authorityRepository;
this.cacheManager = cacheManager;
+ this.hookManager = hookManager;
}
public Optional activateRegistration(String key) {
@@ -126,6 +130,10 @@ public class UserService {
userRepository.save(newUser);
this.clearUserCaches(newUser);
LOG.debug("Created Information for User: {}", newUser);
+
+ // Trigger WordPress-style hook
+ hookManager.doAction("user_register", newUser.getId());
+
return newUser;
}
@@ -207,6 +215,10 @@ public class UserService {
userRepository.save(user);
this.clearUserCaches(user);
LOG.debug("Changed Information for User: {}", user);
+
+ // Trigger WordPress-style hook
+ hookManager.doAction("profile_update", user.getId());
+
return user;
})
.map(AdminUserDTO::new);
diff --git a/sisvietnamvn_main/src/main/resources/templates/fragments/manage-layout.html b/sisvietnamvn_main/src/main/resources/templates/fragments/manage-layout.html
index 6a5a3653..7a14277c 100644
--- a/sisvietnamvn_main/src/main/resources/templates/fragments/manage-layout.html
+++ b/sisvietnamvn_main/src/main/resources/templates/fragments/manage-layout.html
@@ -19,6 +19,8 @@
+
+
@@ -358,6 +360,9 @@
+
+
+