_post_states [ WordPress Function ]
_post_states ( $post )
| Defined at: |
|
Soorgelijke functies: get_post_statuses, get_post_status, get_post_stati, post_exists, get_post_types
No description yet.
Source
<?php
function _post_states($post) {
$post_states = array();
if ( isset( $_REQUEST['post_status'] ) )
$post_status = $_REQUEST['post_status'];
else
$post_status = '';
if ( !empty($post->post_password) )
$post_states['protected'] = __('Password protected');
if ( 'private' == $post->post_status && 'private' != $post_status )
$post_states['private'] = __('Private');
if ( 'draft' == $post->post_status && 'draft' != $post_status )
$post_states['draft'] = __('Draft');
if ( 'pending' == $post->post_status && 'pending' != $post_status )
/* translators: post state */
$post_states['pending'] = _x('Pending', 'post state');
if ( is_sticky($post->ID) )
$post_states['sticky'] = __('Sticky');
$post_states = apply_filters( 'display_post_states', $post_states );
if ( ! empty($post_states) ) {
$state_count = count($post_states);
$i = 0;
echo ' - ';
foreach ( $post_states as $state ) {
++$i;
( $i == $state_count ) ? $sep = '' : $sep = ', ';
echo "<span class='post-state'>$state$sep</span>";
}
}
if ( get_post_format( $post->ID ) )
echo ' - <span class="post-state-format">' . get_post_format_string( get_post_format( $post->ID ) ) . '</span>';
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- _post_states | A HitchHackers guide through WordPress
Feb 12, 2011 ... function _post_states($post) { $post_states = array(); if ( isset($_GET['post_status' ]) ) $post_status = $_GET['post_status']; else $post_status = '' ...
hitchhackerguide.com - _post_states (WordPress Function) - WPSeek.com
WordPress lookup for _post_states, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - Activist Post: States Vote to Ban UN Agenda 21 Policies
5 days ago ... Susanne Posel, Contributor Activist Post The New Hampshire House of Representatives voted to ban UN Agenda 21 polices. This legislation ...
www.activistpost.com - Arts Post - States start to target arts funding
Feb 9, 2011 ... Kansas Gov. Sam Brownback, left, Texas Gov. Rick Perry and South Carolina Gov. Nikki Haley. (AP, Washington Post) Earlier this week, ...
voices.washingtonpost.com