wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_post_states [ WordPress Function ]
| Definiert in: |
|
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>';
}
?>
Beispiele [ wp-snippets.com ]
Top Google Suchergebnisse
- _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 To Use Gold and Silver as Legal Tender
May 2, 2012 ... Susanne Posel, Contributor Activist Post As America slips into monetary oblivion, some states are turning to the US Constitutional right and ...
www.activistpost.com - KZPokemon Radio Post-States Coverage - YouTube
Mar 27, 2012 ... Zach and Kyle's first "official" video. Post states coverage. More to come. Look forward to a Dark Rush expansion discussion, pre-regionals ...
www.youtube.com
