一种快速查找方法是安装ACF 具有以下规则的插件:
并创建
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 ?>