Switch language

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




post_author_meta_box [ WordPress Function ]

post_author_meta_box ( $post )
Parameters:
  • (object) $post
Defined at:



Display form field with list of authors.

Source


<?php
function post_author_meta_box($post) {
    global 
$user_ID;
?>
<label class="screen-reader-text" for="post_author_override"><?php _e('Author'); ?></label>
<?php
    wp_dropdown_users
( array(
        
'who' => 'authors',
        
'name' => 'post_author_override',
        
'selected' => empty($post->ID) ? $user_ID $post->post_author,
        
'include_selected' => true
    
) );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



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