get_the_modified_author [ WordPress Function ]
get_the_modified_author ( No parameters )
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: the_modified_author, get_the_modified_date, get_the_modified_time, get_the_author, the_modified_date
Retrieve the author who last edited the current post.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Docs for page author-template.php
int get_the_author_posts (). get_the_modified_author (line 71). Retrieve the author who last edited the current post. return: The author's display name. since: 2.8 ...
phpdoc.wordpress.org - get_the_modified_author | A HitchHackers guide through WordPress
Feb 12, 2011 ... Source code. function get_the_modified_author() { global $post; if ( $last_id = get_post_meta($post->ID, '_edit_last', true) ) { $last_user ...
hitchhackerguide.com - get_the_modified_author (WordPress Function) - WPSeek.com
WordPress lookup for get_the_modified_author, a WordPress Function. wpseek. com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - How to: Display the latest author who modified a post
if (!function_exists('get_the_modified_author')) { function get_the_modified_author() { global $post; if ( $last_id = get_post_meta($post->ID , '_edit_last', true) ) ...
www.wprecipes.com