如何在动作钩子函数中获取帖子的get_the_date()?

时间:2018-04-05 01:47:35

标签: php wordpress custom-post-type

尝试在自定义帖子类型操作挂钩功能中获取当前发布日期。如何获取当前帖子的所有细节。或者至少是发布日期?我尝试了很多东西。对不起,如果这很容易,我是Wordpress的初学者。

add_action('init', 'Theme2035_lyric_register');  

function Theme2035_lyric_register() {   
    echo get_the_date(); 

    ---other code below---

}

1 个答案:

答案 0 :(得分:0)

我看到你正在寻找the_post动作挂钩:

function my_the_post_action( $post_object ) {
    $post_date = $post_object->post_date;
    // do something with $post_date
}
add_action( 'the_post', 'my_the_post_action' );

如果您想获得$post_object的更多属性,可能需要查看WP_Post class reference