wpseek.com
				A WordPress-centric search engine for devs and theme authors
			_post_states › WordPress Function
Since2.7.0
Deprecatedn/a
› _post_states ( $post, $display = true )
| Parameters: (2) | 
 | 
| See: | |
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | |
| Change Log: | 
 | 
Echoes or returns the post states as HTML.
Source
function _post_states( $post, $display = true ) {
	$post_states      = get_post_states( $post );
	$post_states_html = '';
	if ( ! empty( $post_states ) ) {
		$state_count = count( $post_states );
		$i = 0;
		$post_states_html .= ' — ';
		foreach ( $post_states as $state ) {
			++$i;
			$separator = ( $i < $state_count ) ? ', ' : '';
			$post_states_html .= "<span class='post-state'>{$state}{$separator}</span>";
		}
	}
	/**
	 * Filters the HTML string of post states.
	 *
	 * @since 6.9.0
	 *
	 * @param string                 $post_states_html All relevant post states combined into an HTML string for display.
	 *                                                 E.g. `— <span class='post-state'>Draft, </span><span class='post-state'>Sticky</span>`.
	 * @param string<string, string> $post_states      A mapping of post state slugs to translated post state labels.
	 *                                                 E.g. `array( 'draft' => __( 'Draft' ), 'sticky' => __( 'Sticky' ), ... )`.
	 * @param WP_Post                $post             The current post object.
	 */
	$post_states_html = apply_filters( 'post_states_html', $post_states_html, $post_states, $post );
	if ( $display ) {
		echo $post_states_html;
	}
	return $post_states_html;
}