bbp_core_time_since_ago_text

bbp_core_time_since_ago_text

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_core_time_since_ago_text') is found 1 times:

  • /includes/common/formatting.php line 648
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    // Setup the strings
    $unknown_text   = apply_filters( 'bbp_core_time_since_unknown_text',   esc_html__( 'sometime''bbpress' ) );
    $right_now_text = apply_filters( 'bbp_core_time_since_right_now_text', esc_html__( 'right now', 'bbpress' ) );
    $ago_text       = apply_filters( 'bbp_core_time_since_ago_text',       esc_html__( '%s ago',    'bbpress' ) );
     
    // array of time period chunks
    $chunks = array(
        array( YEAR_IN_SECONDS,   _n_noop( '%s year',   '%s years',   'bbpress' ) ),
        array( MONTH_IN_SECONDS,  _n_noop( '%s month''%s months''bbpress' ) ),
        array( WEEK_IN_SECONDS,   _n_noop( '%s week',   '%s weeks',   'bbpress' ) ),