2014-08-28 66 views
0

我如何從Wordpress中的粘貼文章中刪除日期?在我的模板文件tags.php目前我有以下幾點:如何在wordpress中刪除粘性帖子的日期?

<div class="entry-meta"> 
    <span class="posted-on"><?php _e('Posted on', 'graphy'); ?> 
     <?php printf('<a href="%1$s" rel="bookmark"><time class="entry-date published"   datetime="%2$s">%3$s</time></a>', 
      esc_url(get_permalink()), 
      esc_attr(get_the_date('c')), 
      esc_html(get_the_date()) 
     ); 
      ?> 

    </span> 

回答

0

您可以使用條件來檢查是否當前的職位(你必須在環路)是粘

<div class="entry-meta"> 
    <?php if(!is_sticky()): ?> 
    <!-- Put your <span class="posted-on"> here --> 
    <?php endif; ?> 
+0

謝謝!那完美的工作! :) – user3696987 2014-08-28 21:50:40

相關問題