Exemplo n.º 1
0
/**
 * Output the row class of a topic
 *
 * @since 2.0.0 bbPress (r2667)
 *
 * @param int $topic_id Optional. Topic id
 * @param array Extra classes you can pass when calling this function
 * @uses bbp_get_topic_class() To get the topic class
 */
function bbp_topic_class($topic_id = 0, $classes = array())
{
    echo bbp_get_topic_class($topic_id, $classes);
}
Exemplo n.º 2
0
/**
 * Output the row class of a topic
 *
 * @since bbPress (r2667)
 *
 * @param int $topic_id Optional. Topic id
 * @uses bbp_get_topic_class() To get the topic class
 */
function bbp_topic_class($topic_id = 0)
{
    echo bbp_get_topic_class($topic_id);
}