Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_dashboard_recent_drafts [ WordPress Function ]

wp_dashboard_recent_drafts ( $drafts = false )
Defined at:



No description yet.

Source


<?php
function wp_dashboard_recent_drafts$drafts false ) {
    if ( !
$drafts ) {
        
$drafts_query = new WP_Query( array(
            
'post_type' => 'post',
            
'post_status' => 'draft',
            
'author' => $GLOBALS['current_user']->ID,
            
'posts_per_page' => 5,
            
'orderby' => 'modified',
            
'order' => 'DESC'
        
) );
        
$drafts =& $drafts_query->posts;
    }

    if ( 
$drafts && is_array$drafts ) ) {
        
$list = array();
        foreach ( 
$drafts as $draft ) {
            
$url get_edit_post_link$draft->ID );
            
$title _draft_or_post_title$draft->ID );
            
$item "<h4><a href='$url' title='" sprintf__'Edit &#8220;%s&#8221;' ), esc_attr$title ) ) . "'>" esc_html($title) . "</a> <abbr title='" get_the_time(__('Y/m/d g:i:s A'), $draft) . "'>" get_the_timeget_option'date_format' ), $draft ) . '</abbr></h4>';
            if ( 
$the_content preg_split'#\s#'strip_tags$draft->post_content ), 11PREG_SPLIT_NO_EMPTY ) )
                
$item .= '<p>' join' 'array_slice$the_content010 ) ) . ( 10 count$the_content ) ? '&hellip;' '' ) . '</p>';
            
$list[] = $item;
        }
?>
    <ul>
        <li><?php echo join"</li>\n<li>"$list ); ?></li>
    </ul>
    <p class="textright"><a href="edit.php?post_status=draft" ><?php _e('View all'); ?></a></p>
<?php
    
} else {
        
_e('There are no drafts at the moment');
    }
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

Kullanýcý Tartýþmalarý [ wordpress.org ]

- Bulunamadý -

Yeni bir konu yaz ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics