2014-02-15 224 views
0

我想知道如何保持帖子的日期顯示在博客的網頁。但日期不顯示在每個帖子中。日期不顯示每個帖子wordpress

網址:ichooseapp.com/blog

<div class="tiemsec1"> 

      <div class="timetitle1"><a href='<?php the_permalink() ?>'><?php get_the_date(); //the_date('d.m.y'); ?></a></div> 

      <p>by <?php echo get_the_author(); ?> </p> 

     </div> 

任何一個能幫助我嗎?

回答

0

get_the_date();功能需要回聲; as

echo get_the_date();

你爲什麼不使用the_date()函數,這不是需要回應

相關問題