我想从日期中删除链接,此链接将导致存档。我很乐意得到帮助-非常感谢
如何删除日期档案的链接
2 个回复
最合适的回答,由SO网友:Munish Kumar 整理而成
我不知道您使用的是哪个主题,我正在为您解释关于2017主题的相同内容,请转到wp content\\themes\\2017\\inc\\template tags。php,
您将在此处找到函数TwentySeven\\u time\\u link()。在这个函数中,您将得到如下代码
return sprintf(
/* translators: %s: post date */
__( \'<span class="screen-reader-text">Posted on</span> %s\', \'twentyseventeen\' ),
\'<a href="\' . esc_url( get_permalink() ) . \'" rel="bookmark">\' . $time_string . \'</a>\'
);
删除“a”标记,它将变得像return sprintf(
/* translators: %s: post date */
__( \'<span class="screen-reader-text">Posted on</span> %s\', \'twentyseventeen\' ),
$time_string
);
在您的主题中可能会有类似代码与其他一些函数名,搜索并执行相同操作。希望它能帮助你。谢谢
SO网友:Omry Biton
在我的模板中它不存在,我去了一个。php文件我想我找到了类似的东西,我将代码复制到这里
<div class="entry-meta">
<?php if ( po_single_metadata_show( \'author\' ) ) : ?>
<span class="entry-user vcard author"><?php echo get_avatar( get_the_author_meta( \'email\' ), \'24\' ); ?> <?php the_author_link(); ?></span>
<?php endif; ?>
<?php if ( po_single_metadata_show( \'date\' ) ) : ?>
<span><time datetime="<?php the_time(\'o-m-d\'); ?>" class="entry-date date published updated"><a href="<?php echo get_month_link( get_the_time(\'Y\'), get_the_time(\'m\') ); ?>"><?php echo get_the_date(); ?></a></time></span>
<?php endif; ?>
<?php if ( po_single_metadata_show( \'time\' ) ) : ?>
<span class="entry-time"><?php echo get_the_time(); ?></span>
<?php endif; ?>
<?php if ( po_single_metadata_show( \'comments\' ) ) : ?>
<span class="entry-comment"><?php comments_popup_link( __( \'No Comments\', \'pojo\' ), __( \'One Comment\', \'pojo\' ), __( \'% Comments\', \'pojo\' ), \'comments\' ); ?></span>
<?php endif; ?>
</div>
结束