问题描述

我一直遇到的情况是,一个组织可能有几个工作人员,我想要某种类型的列表和一个具有履历信息的个人资料页面。

通常我会为员工创建一个自定义的职位类型,如果需要,也可以自定义分类。

但是现在我想知道在 Wordpress 中使用内置 “user” post 类型可能不是最佳选择。我意识到我可以自定义用户配置文件字段,显示用户列表,单个配置文件等自定义分类是可能的,我相信。

这里有最好的做法吗?

我现在有一个案子,所有的工作人员也在自己的名字下写博客文章,所以有一个用户帐户反正,我想到,也许我最好只是清理他们的用户个人资料,并使用 author.php 而不是使用自定义帖子类型的’staff’ 。

现在,我一直在使用 CPT,并使用帖子 2 帖子插件将他们的”staff” 帖子与他们的”user” 帐户相关联,从而在他们的单人员页面上创建他们的博客文章的列表。

任何关于如何最好地在 wordpress 中实现这一点的想法是赞赏。

最佳解决方案

如果您想在网站上公开展示的人是用户,即有一个帐户并撰写帖子,在我看来,使用 WordPress 用户功能会更好一些:您将放在 CPT 中的所有信息也可以放入用户元数据,并且创建用户是强制性的 (他们必须登录),而创建 CPT 可以避免,对我而言是多余的。

但是,我知道使用 CPT 可能更简单,原因如下:

  1. WP 管理员的默认配置文件页面很少。

  2. 在 WP 中,根本没有公开的个人资料页面:author.php 不是个人资料页面。

  3. 除了个人资料页面,您可能想要循环使用员工,当然您也可以使用 WP_User_Query 来完成此操作,但是将工作人员与隐藏的用户隔离可能会有点困难:没有用户分类和使用用户角色如果要将公共角色分配给不能公开显示的任何用户,可能会产生问题。

幸运的是,这些问题不是真正的问题,可以很容易地解决。我建议的工作流程是:

  1. 创建一个新的用户角色。您可以从标准角色克隆功能,但创建角色,并将员工与其他用户隔离,将是 super-easy 。

  2. 添加用户配置文件的自定义字段,并放入所需的所有信息。

  3. 创建一个可以处理用户循环和用户配置文件的页面模板。怎么样?看点 4 。

  4. 创建重写端点。以这种方式,像 example.com/staff 这样的 URL 将调用一个页面 (您分配在 3. 上创建的模板),并且像 example.com/staff/user/nickname 这样的 URL 将调用相同的页面,但是通过可以在页面中使用的值为 nickname 的查询 var user 显示用户配置文件。

1.,2. 和 4. 可以很容易地在插件中完成。我会给你这个插件的骨头,应该改进:

<?php
/**
 * Plugin Name: Staff Plugin
 * Description: Test
 * Author: G.M.
*/

/**
* Add a new role cloning capabilities from editor and flush rewrite rules
*/
function install_staff_plugin() {
    $editor = get_role( 'editor' );
    add_role( 'staff', 'Staff', $editor->capabilities );
    staff_plugin_endpoint();
    flush_rewrite_rules();
}

/**
* Remove the role and flush rewrite rules
*/
function unistall_staff_plugin() {
    remove_role( 'staff' );
    flush_rewrite_rules();
}

/**
* Add the endpoint
*/
function staff_plugin_endpoint() {
    add_rewrite_endpoint( 'user', EP_PAGES );
}

/**
* Add custom field to profile page
*/
function staff_plugin_profile_fields( $user ) {
    $fields = array(
        'facebook' => __('Facebook'),
        'twitter'  => __('Twitter'),
        'photo_id' => __('Photo ID (use attachment id)')
    );
    echo '<h3>' . __('Staff Information') . '</h3>';
    echo '<table class="form-table">';
    foreach ( $fields as $field => $label ) {
        $now = get_user_meta( $user->ID, $field, true ) ? : "";
        printf( '<tr><th><label for="%s">%s</label></th>',
            esc_attr($field), esc_html($label) );
        printf( '<td><input type="text" name="%s" id="%s" value="%s" class="regular-text" /><br /></td></tr>',
            esc_attr($field), esc_attr($field), esc_attr($now) );
    }
    echo '</table>';
}

/**
* Save the custom fields
*/
function staff_plugin_profile_fields_save( $user_id ) {
    if ( ! current_user_can( 'edit_user', $user_id ) ) return;
    $fields = array( 'facebook', 'twitter', 'photo_id' );
    foreach ( $fields as $field ) {
        if ( isset( $_POST[$field] ) )
            update_user_meta( $user_id, $field, $_POST[$field] );
    }
}

add_action( 'init', 'staff_plugin_endpoint' );
add_action( 'show_user_profile', 'staff_plugin_profile_fields' );
add_action( 'edit_user_profile', 'staff_plugin_profile_fields' );
add_action( 'personal_options_update', 'staff_plugin_profile_fields_save' );
add_action( 'edit_user_profile_update', 'staff_plugin_profile_fields_save' );
register_activation_hook( __FILE__, 'install_staff_plugin' );
register_deactivation_hook( __FILE__, 'unistall_staff_plugin' );

插件完全符合我的说法。关于为用户配置文件添加自定义字段,作为示例,我只添加了 3 个字段。其中一个用于用户图像,并接受附件的 ID 。当然在现实世界中,最好是调用媒体上传者,让用户选择上传图像,但这不在本答案的范围内。

保存并激活插件后,我们必须创建页面模板,创建一个页面并分配该模板。再次,我将在这里发布一个模板的概念证明:

<?php
/**
 * Template Name: Staff Page
*
*/

get_header(); ?>

<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">

<?php
/* The page content */
while ( have_posts() ) : the_post();
    $page_link = get_permalink();
    the_content();
endwhile;

$required_user = get_query_var( 'user' );

$wanted_meta = array(
    'first_name', // This is a standard meta
    'facebook',   // This is an example of custom meta
    'twitter'     // This is another example of custom meta
);

if ( empty( $required_user ) ) {

    /* The Users Loop */

    // Customize the args as you need
    $args = array (
        'role'    => 'Staff',
        'orderby' => 'post_count',
        'order'   => 'DESC',
        'fields'  => 'all'
    );
    $user_query = new WP_User_Query( $args );
    if ( ! empty( $user_query->results ) ) {
        foreach ( $user_query->results as $user ) {
            $profile_url = trailingslashit($page_link) . 'user/' . $user->user_nicename;
            // This gets ALL the meta fields as a 2 dimensional array (array of arrays)
            $meta_fields = get_user_meta( $user->ID );
            ?>
            <div id="user-<?php echo $user->ID ?>">
            <?php
            // An example of custom meta where to save the id of an attachment
            if ( isset($meta_fields['photo_id'][0]) && ! empty($meta_fields['photo_id'][0]) ) {
                echo '<a href="' . esc_url($profile_url) . '/">';
                echo wp_get_attachment_image( $meta_fields['photo_id'][0], 'medium' );
                echo '</a>';
            }
            ?>
            <h2><?php echo '<p><a href="' .esc_url( $profile_url ) . '/">' .
                $user->display_name . '</a></p>';?></h2>
            <p><?php echo $meta_fields['description'][0]; ?></p>
            <ul>
            <?php
            foreach ( $wanted_meta as $key ) {
                if ( isset($meta_fields[$key][0]) && ! empty($meta_fields[$key][0]) ) {
                    ?>
                    <li><?php echo $meta_fields[$key][0]; ?></li>
                <?php }
            } ?>
            </ul>
            </div>
            <?php
        }
    }

} else {

    /* One User Requested */

    $user = get_user_by( 'slug', $required_user );
    if ( $user ) {
        ?>
        <div id="user-<?php echo $user->ID ?>">
        <?php
        $meta_fields = get_user_meta( $user->ID );
        if ( isset( $meta_fields['photo_id'][0] ) && ! empty( $meta_fields['photo_id'][0] ) ) {
            echo wp_get_attachment_image( $meta_fields['photo_id'][0], 'full' );
        }
        ?>
        <h1><?php echo '<p>' . $user->display_name . '</p>';?></h1>
        <p><?php echo $meta_fields['description'][0]; ?></p>
        <p>
            <a href="<?php echo get_author_posts_url($user->ID); ?>"><?php
                printf(__('See all posts by %s'), $user->display_name); ?></a> |
            <a href="<?php echo $page_link; ?>"><?php _e('Back to Staff'); ?></a>
        </p>
        <ul>
        <?php
        foreach ( $wanted_meta as $key ) {
            if ( isset( $meta_fields[$key][0] ) && ! empty( $meta_fields[$key][0] ) ) {
                ?>
                <li><?php echo $meta_fields[$key][0]; ?></li>
                <?php
            }
        } ?>
        </ul>
        </div>
        <?php
    }
}
?>

</div><!-- #content -->
</div><!-- #primary -->

<?php get_footer(); ?>

现在创建一个页面并分配此模板。然后将用户角色’staff’ 分配给您的员工并填写配置文件。

作为最后的触摸,在您的 author.php 中,您可以添加,可能在标题中,如下所示:

<div class="author-info">
    <?php
    $curauth = ( get_query_var( 'author_name' ) ) ?
        get_user_by( 'slug', get_query_var( 'author_name' ) ) :
        get_userdata( get_query_var( 'author' ) );
    $photo = get_user_meta( $curauth->ID, 'photo_id', true );
    if ( $photo ) echo wp_get_attachment_image( $photo, 'medium' );
    ?>
    <h2><?php echo $curauth->display_name; ?></h2>
    <h3><em><?php echo $curauth->user_description; ?></em></h3>
</div>

就这样。测试它,改善它,并乐趣与它。

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。