尝试在自定义帖子类型的操作挂钩功能中获取当前发布日期。如何获取当前帖子的所有细节。或者至少是发布日期?我尝试了很多东西。对不起,如果这很容易,我是Wordpress的初学者。
add_action('init', 'Theme2035_lyric_register');
function Theme2035_lyric_register() {
echo get_the_date();
---other code below---
}
答案 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。