如何动态分配作者以WordPress发布?

时间:2018-08-31 10:14:34

标签: php wordpress meta-boxes

我正在创建一个WordPress插件,该插件具有一个自定义的meta-box,其中列出了作者和贡献者的复选框。选中后,该列表显示在帖子末尾的前端。我需要做的是:当用户单击贡献者的名称时,它会返回到“存档”页面,但帖子未在该贡献者的名称下列出。

我如何更新并保存多个贡献者下的帖子,以使其显示在作者的存档页面下?

这是自定义meta-box回调函数,是保存帖子时调用的函数:

function cd_meta_box_cb($post)
{
    global $post;
    echo'<b> Select the contributors that have contributed to this post: </b>';
    echo '<br><br>';
    wp_nonce_field('my_meta_box_nonce', 'meta_box_nonce');
    global $wpdb;

    $authors=$wpdb->get_results("SELECT wp_users.ID, wp_users.user_nicename 
    FROM wp_users INNER JOIN wp_usermeta 
    ON wp_users.ID = wp_usermeta.user_id 
    WHERE wp_usermeta.meta_key = 'wp_capabilities' 
    AND wp_usermeta.meta_value LIKE '%author%' OR wp_usermeta.meta_value LIKE '%editor%'  
    ORDER BY wp_users.user_nicename");

    $current_user = wp_get_current_user();
    foreach ($authors as $author) {
        $author_info=get_userdata($author->ID);
        //$author_role=$author_info->roles;
        $author_first_name=$author_info->first_name;
        $author_last_name=$author_info->last_name;
        if(strcmp($current_user->user_nicename,$author->user_nicename)==0)
        {       
            echo"<input type='checkbox' id='my_meta_box_check' name='my_meta_box_check[]'";
            echo"value=";
            the_author_meta('user_nicename', $author->ID);
            echo" checked disabled>";

            echo"<input type='hidden' id='my_meta_box_check' name='my_meta_box_check[]'";
            echo"value=";
            the_author_meta('user_nicename', $author->ID);
            echo">";
        }
        else
        {
            echo"<input type='checkbox' id='my_meta_box_check' name='my_meta_box_check[]'";
            echo"value=";
            the_author_meta('user_nicename', $author->ID);
            echo">";    
        }
        echo $author_first_name ." ". $author_last_name ." ";
        echo"(";
        echo"<label id='labelid' for='author'>";
        the_author_meta('user_nicename', $author->ID);
        echo"</label>";
        echo")";
        echo "<br />";
    }
}
//save custom data when our post is saved
function save_custom_data($post_id)
{
    global $post,$wpdb;

    $contributor=get_post_meta($post->ID, 'my_meta_box_check', true);
    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;
    if (!isset($_POST['meta_box_nonce']) || !wp_verify_nonce($_POST['meta_box_nonce'], 'my_meta_box_nonce')) return;
    if (!current_user_can('edit_post')) return;
    if (isset($_POST['my_meta_box_check'])) 
    {
        update_post_meta($post_id, 'my_meta_box_check', $_POST['my_meta_box_check']);
        $tablename = $wpdb->prefix.'authorlist';
        $wpdb->insert($tablename,array('authorname'=>$post_id,'authorpost'=>$contributor));
    }
    else 
    {
        delete_post_meta($post_id, 'my_meta_box_check');
    }
}

add_action('save_post', 'save_custom_data');

3 个答案:

答案 0 :(得分:3)

将此添加到主题的“ functions.php”或插件中。

add_action( 'pre_get_posts', 'modify_author_query' );

function modify_author_query( $query ) {
    // check if on front-end and author query is modified
    if ( ! is_admin() && is_main_query() && $query->is_author() ) {
        $author_name =  $query->query_vars['author_name'];
        //$userdata = get_user_by('slug',$author_name);
        //$userid = $user->ID;

        $meta_query = array(  
            array(
                'key' => 'my_meta_box_check',
                'value' => $author_name,
                'compare' => 'LIKE'
            )
        );
        $query->set( 'meta_query', $meta_query );

        // unset the default author since we are using custom meta
        unset( $query->query_vars['author_name'] );
    }
}

请注意,如果一个用户名的一部分与另一个用户名匹配,则上面的结果可能会显示错误-尝试将数据另存为逗号分隔的字符串(应以逗号开头和结尾),然后替换{{1} }和'value' => $author_name

答案 1 :(得分:0)

首先,Wordpress打算在一个帖子中邀请一位作者。所以我们需要从那里开始。

我的方法是仅使用Wordpress作者字段作为主要作者,并为“次要”作者提供我自己的字段。

通过这种方式,您可以直接连接到作者页面查询,并添加除用户为作者的帖子之外的用户保存在您的元数据下的帖子。

不引用任何代码,因为您的问题似乎比不知道代码更错误。

答案 2 :(得分:0)

<?php

interface GetterSetter {
    public function __call();
}

interface RepositoryProvider {
    public function getRepository(string $name);
}

class GetSet implements GetterSetter {

    public function __call() {
        /* does some magic */
    }
}

class DefaultRepository implements RepositoryProvider, GetterSetter {

    /**
     * @var GetterSetter
     */
    private $_getterSetter;

    public function __construct(GetterSetter $getterSetter) {
        $this->_getterSetter = $getterSetter;
    }

    public function getRepository(string $name) {
        // makes use of the GetSetTrait
        $this->__call();
    }

    public function __call() {
        // makes use of the GetSetTrait
        $this->_getterSetter->__call();
    }
}

class Controller implements RepositoryProvider, GetterSetter {

    /**
     * @var RepositoryProvider
     */
    private $repositoryProvider;

    public function __construct() {
        $this->repositoryProvider = new DefaultRepository(new GetSet());
    }

    public function getRepository(string $name) {
        return $this->repositoryProvider->getRepository($name);
    }

    public function __call() {
        $this->repositoryProvider->__call();
    }
}

“ dev”是我的数据库前缀,因此您需要替换为$ wpdb-> prefix