Beispiel #1
0
/**
 * @since      0.7.0
 * @deprecated 2.0.0
 */
function hybrid_comment_reply_link_shortcode($attr)
{
    _deprecated_function(__FUNCTION__, '2.0.0', 'hybrid_get_comment_reply_link');
    return hybrid_get_comment_reply_link($attr);
}
/**
 * Outputs the comment reply link.  Only use outside of `wp_list_comments()`.
 *
 * @since  2.0.0
 * @access public
 * @param  array   $args
 * @return void
 */
function hybrid_comment_reply_link($args = array())
{
    echo hybrid_get_comment_reply_link($args);
}
Beispiel #3
0
			</a>
			<?php 
edit_comment_link();
?>
		</header><!-- .comment-meta -->

		<div <?php 
hybrid_attr('comment-content');
?>
>
			<?php 
comment_text();
?>
		</div><!-- .comment-content -->

		<?php 
if (hybrid_get_comment_reply_link()) {
    ?>

			<footer class="comment-meta">
				<?php 
    hybrid_comment_reply_link();
    ?>
			</footer><!-- .comment-meta -->

		<?php 
}
?>

	</article>