예제 #1
0
function bp_blog_last_active() {
	echo bp_get_blog_last_active();
}
예제 #2
0
/**
 * Output the last active date of the current blog in the loop.
 *
 * @param array $args See {@link bp_get_blog_last_active()}.
 */
function bp_blog_last_active($args = array())
{
    echo bp_get_blog_last_active($args);
}
예제 #3
0
 /**
  * @group bp_get_blog_last_active
  */
 public function test_bp_get_blog_last_active_active_no_last_activity()
 {
     $this->assertEquals(__('Never active', 'buddypress'), bp_get_blog_last_active());
 }