bbPress – Function to shorten freshness display
- Este tópico contém 0 resposta, 1 voz e foi atualizado pela última vez 2 anos, 12 meses atrás por .
Visualizando 0 resposta da discussão
Visualizando 0 resposta da discussão
|
1 2 3 4 5 6 7 8 9 |
// Function to shorten freshness display from say '1 month, 2 weeks' to '1 month' function short_freshness_time( $output) { $output = preg_replace( '/, .*[^atrás]/', ' ', $output ); return $output; } add_filter( 'bbp_get_time_since', 'short_freshness_time' ); add_filter( 'bp_core_time_since', 'short_freshness_time' ); |