首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何列出所有修订的作者?

如何列出所有修订的作者?
EN

WordPress Development用户
提问于 2020-12-30 03:41:49
回答 2查看 237关注 0票数 1

有些wordpress文章有很多修订,我知道如何列出所有的修订,使用代码:wp_list_post_revisions( int|WP_Post $post_id, string $type = 'all' )

然而,如何只列出文章中每一修订本的作者,则需要满足:

  1. 列出所有修订的作者;
  2. 提交人不再重复;(也许作者曾多次编辑同一篇文章)
  3. 作者有一个到他的个人资料页面的链接。

非常感谢!

EN

回答 2

WordPress Development用户

回答已采纳

发布于 2020-12-30 11:56:33

Use可以在此功能下面使用,以获得作者详细信息中的所有修订版和选中的副本。

根据你的需要。

代码语言:javascript
运行
复制
function  get_all_revisions($post_id){


//get all revisions of particular Page Id & Post Id

$revision = wp_get_post_revisions($post_id);

$post_author_id = array();

foreach ($revision as $key => $value) {
    

    // Check Id Already Exists in Array 
     
    if ( ! in_array($value->post_author, $post_author_id)) {

        // Store Author Id 
        $post_author_id[] = $value->post_author;

        $get_author['author_link'] = get_author_posts_url($value->post_author); // Author Link
        $get_author['author_name'] = get_the_author_meta( 'display_name', $value->post_author ); // Author Display Name

        //Store All Author Details in Array
        $get_author_group[] =  $get_author;

     } 
        
     
    }
    
    return $get_author_group;

}

用法:

代码语言:javascript
运行
复制
// 2 is page or post id
$all_revisions = get_all_revisions(2); 

//print_r($all_revisions);

foreach ($all_revisions as $key => $value) {
    
    echo $value['author_link'].'
';
    echo $value['author_name'].'
';

}
票数 0
EN

WordPress Development用户

发布于 2020-12-30 05:22:39

我不认为您可以通过使用任何默认函数来获得它,但是可以肯定您可以使用自定义SQL。

代码语言:javascript
运行
复制
global $wpdb;
$post_id = get_the_ID();
$revisions = $wpdb->get_results( "SELECT pt.post_author FROM $wpdb->posts pt WHERE 1=1 AND pt.post_parent = '$post_id' AND pt.post_type = 'revision' AND pt.post_status = 'inherit' GROUP BY post_author ORDER BY pt.post_author ASC" );
票数 0
EN
页面原文内容由WordPress Development提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://wordpress.stackexchange.com/questions/380612

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档