我正在使用wordpress。
在themes/my_theme/functions.php
我想做类似下面的事情:
global $post;
$is_mobile = get_post_meta($post->ID, 'mobile')[0];
然后我发现global $post
为空。
我试过了:
function mobile_actions() {
global $post;
var_dump($post);
}
add_action('wp_head', 'mobile_actions');
没关系。
和
function mobile_actions() {
global $post;
var_dump($post);
}
add_action('wp_loaded', 'mobile_actions');
没有运气。
所以,如果我想获取global $post
,哪个钩子是我应该使用的最早的?