spivurno
11/18/2014 - 2:11 PM

Gravity Perks // GP Word Count // Change Word Count Labels

Gravity Perks // GP Word Count // Change Word Count Labels

<?php
/**
 * Gravity Perks // GP Word Count // Change Word Count Labels
 */
add_filter( 'gpwc_script_args', 'gpwc_modify_script_args' );
function gpwc_modify_script_args( $args ) {

	$args['defaultLabel'] = '{count} / {limit}';
	$args['counterLabel'] = '{count} / {limit}';
	$args['limitReachedLabel'] = '<span style="font-weight:bold;">{count} / {limit}</span>';
	$args['limitExceededLabel'] = '<span style="font-weight:bold;color:#f00;">{count} / {limit}</span>';

	return $args;
}