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_string = ''; if ( ! empty( $post_states ) ) { $state_count = count( $post_states ); $i = 0; $post_states_string .= ' — '; foreach ( $post_states as $state ) { ++$i; $separator = ( $i < $state_count ) ? ', ' : ''; $post_states_string .= "<span class='post-state'>{$state}{$separator}</span>"; } } if ( $display ) { echo $post_states_string; } return $post_states_string; }