如何获得帖子标题下的发布日期?

时间:2018-08-10 17:51:58

标签: php wordpress

我正在尝试在帖子标题下显示我的发布日期。我尝试了不同的方法,但是没有成功。

我想知道应该对这段代码进行什么更改,以使帖子标题下的发布日期。这是我的index.php

<?php
$edgt_blog_type = milieu_edge_get_archive_blog_list_layout();
milieu_edge_include_blog_helper_functions( 'lists', $edgt_blog_type );
$edgt_holder_params = milieu_edge_get_holder_params_blog();

get_header();
milieu_edge_get_title();
?>

<div class="<?php echo esc_attr( $edgt_holder_params['holder'] ); ?>">
    <?php do_action( 'milieu_edge_action_after_container_open' ); ?>

    <p>This article was published on: <?php the_time('m/j/y g:i A') ?></p>

    <div class="<?php echo esc_attr( $edgt_holder_params['inner'] ); ?>">
        <?php milieu_edge_get_blog( $edgt_blog_type ); ?>
    </div>

    <?php do_action( 'milieu_edge_action_before_container_close' ); ?>
</div>

<?php do_action( 'milieu_edge_action_blog_list_additional_tags' ); ?>
<?php get_footer(); ?>

1 个答案:

答案 0 :(得分:0)

如果您不在循环中,请尝试使用 <?php echo get_the_time( $format, $post ); ?> https://codex.wordpress.org/Function_Reference/get_the_time