Uses
| Uses | Description | 
|---|---|
| wp-includes/comment-template.php: respond_link | Filters the respond link when a post has no comments. | 
| wp-includes/l10n.php: __() | Retrieve the translation of $text. | 
| wp-includes/l10n.php: _n() | Translates and retrieves the singular or plural form based on the supplied number. | 
| wp-includes/l10n.php: _e() | Display translated text. | 
| wp-includes/formatting.php: esc_attr() | Escaping for HTML attributes. | 
| wp-includes/functions.php: number_format_i18n() | Convert float number to format based on the locale. | 
| 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: post_password_required() | Whether post requires password and correct password has been provided. | 
| wp-includes/post-template.php: get_the_ID() | Retrieve the ID of the current item in the WordPress Loop. | 
| wp-includes/post-template.php: get_the_title() | Retrieve post title. | 
| wp-includes/comment-template.php: comments_open() | Determines whether the current post is open for comments. | 
| wp-includes/comment-template.php: pings_open() | Determines whether the current post is open for pings. | 
| wp-includes/comment-template.php: comments_popup_link_attributes | Filters the comments link attributes for display. | 
| wp-includes/comment-template.php: get_comments_number() | Retrieves the amount of comments a post has. | 
| wp-includes/comment-template.php: comments_link() | Displays the link to the current post comments. | 
| wp-includes/comment-template.php: comments_number() | Displays the language string for the number of comments the current post has. |