Uses
Uses | Description |
---|---|
wp-admin/includes/template.php: postmeta_form_keys | Filters values for the meta key dropdown in the Custom Fields meta box. |
wp-includes/wp-db.php: wpdb::esc_like() | First half of escaping for LIKE special characters % and _ before preparing for MySQL. |
wp-admin/includes/template.php: submit_button() | Echoes a submit button, with provided text and appropriate class(es). |
wp-admin/includes/template.php: postmeta_form_limit | Filters the number of custom fields to retrieve for the drop-down in the Custom Fields meta box. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/l10n.php: _e() | Display translated text. |
wp-includes/l10n.php: _ex() | Display translated string with gettext context. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: esc_attr() | Escaping for HTML attributes. |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/functions.php: wp_nonce_field() | Retrieve or display nonce hidden field for forms. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/wp-db.php: wpdb::get_col() | Retrieves one column from the database. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |
wp-includes/meta.php: is_protected_meta() | Determines whether a meta key is considered protected. |