この著者プロフィール ボックスの CSS コードは、より多くの著者の背景情報を提供し、読者により多くの記事を読むよう促すことで、読者の関与を高めます。
<code class="language-php">// ---------------------------------------------------------- // // Snippflow 作者简介框 // // ---------------------------------------------------------- // function sf_author_box() { if (is_single()) { $author_id = get_the_author_meta('ID'); $author_name = get_the_author_meta('display_name'); $author_bio = get_the_author_meta('description'); $author_posts_url = get_author_posts_url($author_id); $author_avatar = get_avatar_url($author_id, array('size' => 96)); $output = '<div class="sf-author-bio"> <div class="author-avatar">'.get_avatar($author_id, 96).'</div> <div class="desc-wrapper"> <h3>'.$author_name.'</h3> <p>'.$author_bio.'</p> <a href="'.$author_posts_url.'">查看更多文章</a> </div> </div>'; echo $output; } } add_action('wp_footer', 'sf_author_box'); // CSS 代码 (可添加到主题的 style.css 或自定义 CSS 文件中) /* ---------------------------------------------------------- */ /* Snippflow 作者简介框 */ /* ---------------------------------------------------------- */ .sf-author-bio { display: flex; align-items: center; gap: 20px; border-top: 1px solid rgba(0,0,0,.1); padding-top: 30px; margin-top: 30px; } .sf-author-bio .author-avatar { display: inline-flex; flex-shrink: 0; width: 80px; height: 80px; line-height: 0; border-radius: 100%; } .sf-author-bio .desc-wrapper > * { margin: 0 0 10px 0; } .sf-author-bio .desc-wrapper > *:last-child { margin-bottom: 0; } .sf-author-bio .desc-wrapper h3, .sf-author-bio .desc-wrapper p, .sf-author-bio .desc-wrapper a { font-size: 0.9rem; } @media only screen and (max-width: 767px) { .sf-author-bio { flex-direction: column; text-align: center; } }</code>
このコードは、著者のアバター、名前、紹介文、および他の記事を表示するためのリンクを含む著者プロフィール ボックスを追加します。 CSS コードにより、さまざまな画面サイズでも最適な表示が保証されます。 WordPress テーマの functions.php
ファイルにコードを追加し、必要に応じて CSS スタイルを調整してください。
以上がWordPress で Bio Box CSS を作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。