wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_media_states › WordPress Function

Od3.2.0
Przestarzałyn/a
_media_states ( $post, $display = true )
Parametry: (2)
  • (WP_Post) $post The attachment post to retrieve states for.
    Wymagane: Tak
  • (bool) $display Optional. Whether to display the post states as an HTML string. Default true.
    Wymagane: Nie
    Domyślny: true
Powrót:
  • (string) Media states string.
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 5.6.0

Outputs the attachment media states as HTML.



Źródło

function _media_states( $post, $display = true ) {
	$media_states        = get_media_states( $post );
	$media_states_string = '';

	if ( ! empty( $media_states ) ) {
		$state_count = count( $media_states );

		$i = 0;

		$media_states_string .= ' — ';

		foreach ( $media_states as $state ) {
			++$i;

			$separator = ( $i < $state_count ) ? ', ' : '';

			$media_states_string .= "<span class='post-state'>{$state}{$separator}</span>";
		}
	}

	if ( $display ) {
		echo $media_states_string;
	}

	return $media_states_string;
}