print_embed_comments_button() WordPress Function
This function will print a button that, when clicked, will embed comments from the specified Wordpress post into the current page. This can be useful if you want to allow users to read and leave comments on a post without having to leave the current page.
print_embed_comments_button() #
Prints the necessary markup for the embed comments button.
Source
File: wp-includes/embed.php
function print_embed_comments_button() { if ( is_404() || ! ( get_comments_number() || comments_open() ) ) { return; } ?> <div class="wp-embed-comments"> <a href="<?php comments_link(); ?>" target="_top"> <span class="dashicons dashicons-admin-comments"></span> <?php printf( /* translators: %s: Number of comments. */ _n( '%s <span class="screen-reader-text">Comment</span>', '%s <span class="screen-reader-text">Comments</span>', get_comments_number() ), number_format_i18n( get_comments_number() ) ); ?> </a> </div> <?php }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |