Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
247 B
3
Indexable
Never
add_filter( 'fibofilters/i18n/front_translations', function ( $translations ) {

	if ( array_key_exists( '[front]All filters', $translations ) ) {
		$translations['[front]All filters'][0] = 'Your text...';
	}
	
	return $translations;
} );
Leave a Comment