WordPress:你如何从发布日期分离链接?

时间:2011-07-20 03:07:13

标签: php html wordpress

如何从my(child)functions.php中删除下面代码中的链接?我希望我的日期显示为常规文本。

<?php
if ( ! function_exists( 'twentyeleven_posted_on' ) ) :
/**
 * Prints HTML with meta information for the current post-date/time and author.
 * Create your own twentyeleven_posted_on to override in a child theme
 *
 * @since Twenty Eleven 1.0
 */
function twentyeleven_posted_on() {
    printf( __( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ),
        esc_url( get_permalink() ),
        esc_attr( get_the_time() ),
        esc_attr( get_the_date( 'c' ) ),
        esc_html( get_the_date() ),
        esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
        sprintf( esc_attr__( 'View all posts by %s', 'twentyeleven' ), get_the_author() ),
        esc_html( get_the_author() )
    );
}
endif;
?>

由于

1 个答案:

答案 0 :(得分:0)

你正试图获取帖子的日期吗?使用功能:the_date('y-m-d');

string参数表示您希望如何显示日期。您可以在Wordpress Codex

了解有关此功能的更多信息