wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



default_topic_count_scale › WordPress Function

Seit2.9.0
Veraltetn/v
default_topic_count_scale ( $count )
Parameter:
  • (int) $count Number of posts with that tag.
    Erforderlich: Ja
Gibt zurück:
  • (int) Scaled count.
Definiert in:
Codex:

Default topic count scaling for tag links.



Quellcode

function default_topic_count_scale( $count ) {
	return round( log10( $count + 1 ) * 100 );
}