Uses
Uses | Description |
---|---|
wp-includes/functions.php: current_datetime() | Retrieves the current time as an object with the timezone from settings. |
wp-admin/includes/dashboard.php: dashboard_recent_posts_query_args | Filters the query arguments used for the Recent Posts widget. |
wp-admin/includes/template.php: _draft_or_post_title() | Get the post title. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/l10n.php: _x() | Retrieve translated string with gettext context. |
wp-includes/formatting.php: esc_attr() | Escaping for HTML attributes. |
wp-includes/general-template.php: get_the_time() | Retrieve the time at which the post was written. |
wp-includes/class-wp-query.php: WP_Query::__construct() | Constructor. |
wp-includes/query.php: wp_reset_postdata() | After looping through a separate query, this function restores the $post global to the current post in the main query. |
wp-includes/functions.php: date_i18n() | Retrieves the date in localized format, based on a sum of Unix timestamp and timezone offset in seconds. |
wp-includes/functions.php: current_time() | Retrieves the current time based on specified type. |
wp-includes/link-template.php: get_edit_post_link() | Retrieves the edit post link for post. |
wp-includes/link-template.php: get_permalink() | Retrieves the full permalink for the current post or post ID. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/post-template.php: get_the_ID() | Retrieve the ID of the current item in the WordPress Loop. |