Definition:
function default_topic_count_scale( $count ) {}
Default topic count scaling for tag links
Parameters
- integer $count: number of posts with that tag
Return values
returns:scaled count
Source code
function default_topic_count_scale( $count ) {
return round(log10($count + 1) * 100);
}
786

February 11, 2011 


No comments yet... Be the first to leave a reply!