Uses
Uses | Description |
---|---|
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: wp_slash() | Add slashes to a string or array of strings, in a recursive manner. |
wp-includes/formatting.php: sanitize_title() | Sanitizes a string into a slug, which can be used in URLs or HTML attributes. |
wp-includes/plugin.php: add_filter() | Hook a function or method to a specific filter action. |
wp-includes/plugin.php: remove_filter() | Removes a function from a specified filter hook. |
wp-includes/post.php: wp_insert_post() | Insert or update a post. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |
wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |