プロフィールを自動挿入するためのテーマの編集。
sidebar.phpの<div id=”main-sidebars”>の真下に、
以下のソースを追加。
<div id="author_plofile">
<b><?php the_author_meta('nickname'); ?></b><br />
<?php the_author_meta('description'); ?>
</div><!-- #author_plofile -->
70px×70pxの画像を作って、backgroundで背景に指定して表示しました。
style.cssに追記です。
/* ///追加したもの/// */
#author_plofile{
margin: 0px 40px 20px 40px;
padding: 10px 10px 10px 90px;
border: #999999 1px solid;
background:url("https://digital.monorepo.com/iphone/img/dmonoi_plofile.jpg") no-repeat left;
background-position:10px 10px;
※
WordPress上にプロフィールを表示してみようを参考にしました。