Example #1
0
/**
 * Output the link to the last reply in a forum
 *
 * @since bbPress (r2464)
 *
 * @param int $forum_id Optional. Forum id
 * @uses bbp_get_forum_last_reply_permalink() To get the forum last reply link
 */
function bbp_forum_last_reply_permalink($forum_id = 0)
{
    echo bbp_get_forum_last_reply_permalink($forum_id);
}
Example #2
0
/**
 * Output the link to the last reply in a forum
 *
 * @since bbPress (r2464)
 *
 * @param int $forum_id Optional. Forum id
 * @uses bbp_get_forum_last_reply_permalink() To get the forum last reply link
 */
function bbp_forum_last_reply_permalink($forum_id = 0)
{
    echo esc_url(bbp_get_forum_last_reply_permalink($forum_id));
}