$retstr = sprintf( __( 'Viewing %1$s topics - %2$s through %3$s (of %4$s total)', 'bbpress' ), $bbp->topic_query->post_count, $from_num, $to_num, $total );
}
// Only 1 topic
} else {
$retstr = sprintf( __( 'Viewing %1$s topic', 'bbpress' ), $total );
}
// Filter and return
return apply_filters( 'bbp_get_topic_pagination_count', $retstr );
}
/**
* Output pagination links
*
* @since bbPress (r2519)
*
* @uses bbp_get_forum_pagination_links() To get the pagination links
*/
function bbp_forum_pagination_links() {