Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- * Filter count text
- *
- * @param string $text
- * @param array $args
- *
- */
- add_filter( 'streamtube/core/term_grid/count', function( $text, $args ){
- // Declare the plural and singular texts
- $plural = 'entries';
- $singular = 'entry';
- $text = str_replace( 'posts', $plural, $text );
- $text = str_replace( 'post', $singular, $text );
- return $text;
- }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement