如何通过编码手动在wordpress中添加作者姓名

时间:2014-06-24 06:35:05

标签: php wordpress content-management-system author

最近我从Themeforest.com购买了一个模板。我对此模板有疑问。我无法在博客文章中显示作者姓名。我尝试过各种不同的选择,但没有一个可行。还尝试通过添加the_author()函数来编辑functions.php,theme-function.php页面,但没有运气。你能帮帮我吗?缺少作者姓名的代码定义如下。

if ( ! function_exists( 'ishyoboy_get_post_details' ) ) {
  function ishyoboy_get_post_details(){
    $return = '';
      global $post;
        $author_id=$post->post_author;
        get_author_posts_url( $author_id );

        ob_start(); ?>
        <span class="ish-blog-post-details">
          <span><?php _e( 'by', 'ishyoboy'); ?></span> 
                  <?php echo the_author_posts_link(); ?>
        </span>  
                <?php
          $return .= ob_get_contents();
          ob_end_clean();
          return $return;
                ?>
    }
}

理想情况下,作者姓名应显示在

  <span><?php _e( 'by', 'ishyoboy'); ?></span> 
  <?php echo the_author_posts_link(); ?>

但不是。

谢谢

0 个答案:

没有答案