get_editable_authors [ WordPress Function ]
get_editable_authors ( $user_id )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: get_editable_roles, get_the_author, get_the_author_msn, get_editable_user_ids, get_the_author_id
No description yet.
Source
<?php
function get_editable_authors( $user_id ) {
_deprecated_function( __FUNCTION__, '3.1', 'get_users()' );
global $wpdb;
$editable = get_editable_user_ids( $user_id );
if ( !$editable ) {
return false;
} else {
$editable = join(',', $editable);
$authors = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE ID IN ($editable) ORDER BY display_name" );
}
return apply_filters('get_editable_authors', $authors);
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- get_editable_authors Wordpress hook details -- Adam Brown, BYU ...
WordPress hook directory get_editable_authors. Description. Applied to the list of post authors that the current user is authorized to edit in the ...
adambrown.info - get_editable_authors() WordPress function reference, arguments ...
Search. Blog. get_editable_authors(). This function had been marked as deprecated. Signature. get_editable_authors( $user_id ). user_id: (int) User ID. Return ...
queryposts.com - php function get_users_drafts( $user_id ) - WordPress SVN
... return apply_filters('get_others_drafts', $other_drafts); } function get_editable_authors( $user_id ) { global $wpdb; $editable = get_editable_user_ids( $user_id ) ...
core.svn.wordpress.org - deprecated.php - PHP Cross Reference of WordPress Source - Yoast
Jun 1, 2011 ... remove_option_update_handler() codepress_get_lang() codepress_footer_js() use_codepress() get_author_user_ids() get_editable_authors() ...
xref.yoast.com