如何删除wordpress中粘贴帖子的日期?

时间:2014-08-28 17:56:39

标签: wordpress sticky

如何从Wordpress中的粘贴帖子中删除日期?在我的template-tags.php文件中,我目前有以下内容:

<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>

1 个答案:

答案 0 :(得分:0)

您可以使用条件来检查当前帖子(您必须在循环中)是否是粘性的

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