2014-08-28 60 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

相关问题