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



wp_increase_content_media_count › WordPress Function

Seit5.9.0
Veraltetn/v
wp_increase_content_media_count ( $amount = 1 )
Zugriff:
  • private
Parameter:
  • (int) $amount Optional. Amount to increase by. Default 1.
    Erforderlich: Nein
    Standard: 1
Gibt zurück:
  • (int) The latest content media count, after the increase.
Definiert in:
Codex:

Increases an internal content media count variable.



Quellcode

function wp_increase_content_media_count( $amount = 1 ) {
	static $content_media_count = 0;

	$content_media_count += $amount;

	return $content_media_count;
}