0

サイトhttp://insideoutdogtraining.com/young-calicoe-dog-fightingがあり、プラグインhttp://dempseymarketing.com/products/relauthor-plugin-for-wordpress/を使用して投稿コンテンツの下に作成者ボックスが表示されます。

しかし、著者の画像のサイズを大きくして、メインの著者ボックスの div に収まるようにしたいと考えています。しかし、私は役に立たない get_avatar の他の値を変更します。それは 50x50 のみを表示しています。画像のサイズを大きくするにはどうすればよいですか?

4

2 に答える 2

1

テーマがカスタム css をサポートしている場合は、この css を追加して見栄えを良くしてみてください。

.author-title {margin-top: 0;}
.data-image .avatar {border-radius: 6px; width: 80px; height: 80px;}
.author-box {width: 100%; padding: 0 30px 20px 0; clear: both;}

次のような結果が得られます: http://prntscr.com/6aenaz

于 2015-02-27T09:35:33.890 に答える
0

プラグインの代わりにテーマでこのコード行を使用しないのはなぜですか?

<?php if ( get_the_author_meta( 'description' ) && ( ! function_exists(  'is_multi_author' ) || is_multi_author() ) ) : // If a user has filled out their  description and this is a multi-author blog, show a bio on their entries ?>
        <div id="author-info">
            <div id="author-avatar">
                <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'yourthemesname_author_bio_avatar_size', 68 ) ); ?>
            </div><!-- #author-avatar -->
            <div id="author-description">
                <h2><?php printf( __( 'About %s', 'yourthemesname' ), get_the_author() ); ?></h2>
                <?php the_author_meta( 'description' ); ?>
            <div id="author-link">
                <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
                    <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'yourthemesname' ), get_the_author() ); ?>
                </a>
            </div><!-- #author-link -->
        </div><!-- #author-description -->
    </div><!-- #author-info -->
<?php endif; ?>
于 2012-07-20T17:38:11.673 に答える