怎么在WordPress 网站文章未尾添加作者信息框?

代金券网

怎么在WordPress 网站文章未尾自动添加一个作者信息框?如果想在WordPress文章的末尾,添加文章作者的相关信息,下面一段代码可以方便在文章中添加一个作者的信息框。

1、将代码添加到当前主题functions.php中:

  1. function wp_author_info_box( $content ) {    global $post;    // 检测文章与文章作者    if ( is_single() && isset( $post->post_author ) ) {        // 获取作者名称        $display_name = get_the_author_meta( ‘display_name’, $post->post_author );        // 如果没有名称,使用昵称        if ( empty( $display_name ) )        $display_name = get_the_author_meta( ‘nickname’, $post->post_author );        // 作者的个人信息        $user_description = get_the_author_meta( ‘user_description’, $post->post_author );        // 获取作者的网站        $user_website = get_the_author_meta(‘url’, $post->post_author);        // 作者存档页面链接        $user_posts = get_author_posts_url( get_the_author_meta( ‘ID’ , $post->post_author));        if ( ! empty( $display_name ) )        $author_details = ‘<div class=”author-name”>关于 ‘ . $display_name . ‘</div>’;        if ( ! empty( $user_description ) )        // 作者头像        $author_details .= ‘<div class=”author-details”>’ . get_avatar( get_the_author_meta(‘user_email’) , 90 ) . nl2br( $user_description ). ‘</div>’;        $author_details .= ‘<div class=”author-links”><a href=”‘. $user_posts .’”>查看 ‘ . $display_name . ‘ 所有文章</a>’;        // 检查作者在个人资料中是否填写了网站        if ( ! empty( $user_website ) ) {        // 显示作者的网站链接        $author_details .= ‘ | <a href=”‘ . $user_website .’” target=”_blank” rel=”nofollow”>网站</a></div>’;        } else {            // 如果作者没有填写网站则不显示网站链接            $author_details .= ‘</div>’;        }        // 在文章后面添加作者信息        $content = $content . ‘<footer class=”author-bio-section” >’ . $author_details . ‘</footer>’;    }    return $content;}// 添加过滤器add_action( ‘the_content’, ‘wp_author_info_box’ );// 允许HTMLremove_filter(‘pre_user_description’, ‘wp_filter_kses’);  

2、再将配套的CSS添加到主题样式文件style.css中:

  1. .author-bio-section {    background#fff;    floatleft;    width: 100%;    margin10px 0;    padding15px;    border1px dashed #ccc;}.author-name {    font-size15px;    font-weightbold;    margin: 0 0 5px 0;}.author-details img {    floatleft;    width48px;    heightauto;    margin5px 15px 0 0;}  

1、阿里云产品最新优惠领取地址:立即前往

2、阿里云服务器优惠券领取地址优惠购买地址:点击前往

3、阿里云最新优惠活动地址汇总,共16个,地址:点击前往

4、同配置云产品腾讯云相对便宜,先点此一键领取2860元无门槛满减券(老用户换QQ登陆,同一实名享新人特价),再点此进入腾讯云活动页面12年老码农建议:服务器升级、复购、续费贵,数据迁移也麻烦,建议用好新人优惠资格,买多年,配置一次性到位,后期省事又省钱。


评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注