wpseek.com
A WordPress-centric search engine for devs and theme authors
_post_states › WordPress Function
Since2.7.0
Deprecatedn/a
› _post_states ( $post, $echo = true )
Parameters: (2) |
|
See: | |
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Function to echo or return the post states as HTML.
Source
function _post_states( $post, $echo = 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 ) { $sep = ( ++$i === $state_count ) ? '' : ', '; $post_states_string .= "<span class='post-state'>$state$sep</span>"; } } if ( $echo ) { echo $post_states_string; } return $post_states_string; }