如何创建WordPress个人资料/作者标题?

时间:2017-07-07 作者:Murphy Elo

我正在localhost中脱机处理WordPress主题这是一个博客主题:http://preview.themeforest.net/item/paperback-magazine-wordpress-theme/full_screen_preview/13511026 . 我需要以这样的方式创建一个个人资料标题,这些作者将能够在他们的个人简历、背景图片、个人资料图片和到他们的社交网络的链接中添加个人资料。类似于此:

http://thoughtcatalog.com/rania-naim/

我刚刚开始主题开发,不知道该怎么做。将非常感谢您的帮助。谢谢

2 个回复
SO网友:Marcos Nakamine

一种快速查找方法是安装ACF 具有以下规则的插件:

enter image description here

并创建author.php 使用此代码的文件:

<?php while ( have_posts() ) : the_post(); ?>

    <?php // get the background_picture ?>
    <?php $background_picture = get_field( \'background_picture\', \'user_\'.get_the_ID() ); ?>
    <img src="<?php echo $background_picture[\'url\'] ?>" alt="">

    <?php // get the profile_picture ?>
    <?php $profile_picture = get_field( \'profile_picture\', \'user_\'.get_the_ID() ); ?>
    <img src="<?php echo $profile_picture[\'url\'] ?>" alt="">

    <?php // get the bio ?>
    <?php echo get_the_author_meta( \'description\' ) ?>

<?php endwhile ?>

SO网友:fjanecic

您可以使用如下插件Ultimate Member 来完成这件事。它支持您要求的所有内容(个人资料照片、封面照片、个人简历、社交媒体链接、已发表的文章),您可以使用简单的拖放编辑器自定义这些信息。

如果您想实现特定的设计,可能需要稍微修改一下代码,但如果您正在寻找一个简单的“无需编程”解决方案,这将是您的最佳选择。

还有其他类似的插件,但在我看来,这是一个简单而免费的解决方案。我在我的网站上使用这个插件,到目前为止还没有任何问题。

结束

相关推荐