一直試圖在Wordpress主題上插入「作者」by <?php the_author() ?>
代碼(由8Bit所要求)。請求幫助。需要在帖子/頁面標題之後和日期之前插入。如何在Wordpress中插入「作者」代碼所需主題?
的代碼如下:
<header>
<?php if (0 < strlen(get_the_title())) { ?>
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h1><!-- /.entry-title -->
<?php } // end if ?>
<div class="post-meta">
<span class="post-date">
<?php if (0 < strlen(get_the_title())) { ?>
<?php the_time(get_option('date_format')); ?>
<?php } else { ?>
<a href="<?php the_permalink(); ?>">
<?php the_time(get_option('date_format'));?>
</a>
<?php } // end if/else ?>
</span><!-- /.post-date -->
<?php _e(' | ', 'required'); ?>
<span class="comment-link">
<?php
comments_popup_link('Comment', '1 comment', '% comments',
'comments-link', '');
?>
</span><!-- /.comment-link -->
<?php edit_post_link('- edit ', '<span>', '</span>'); ?>
</div><!-- /.post-meta -->
</header>
謝謝:)
這是循環代碼:
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
} // end while
你可以更具體的關於wh在你嘗試過,出了什麼問題?從我的角度來看,它可能就像在標題欄和後期元塊之間插入'<?php the_author()?>一樣簡單,並且添加一些HTML格式化...' –
'通過<?php the_author()?>'在你的代碼中? – codepixlabs
@AlexanderVogt感謝您的回覆。是的,我試過了,但沒有奏效。如果可能,你可以在下次回覆時插入代碼並發表評論。 – Manipur