我正在尝试在我的自定义 wordpress 插件中获取帖子 ID,并且我正在使用以下代码:
global $post;
$current_page_id = $post->ID;
var_dump($current_page_id);
但没有任何成功。随着var_dump
我接听每一个电话null
。比,如果我添加到模板中,则输出有效:
add_action('wp_footer', 'test');
function test() {
global $post;
$current_page_id = $post->ID;
}
我想在我的插件中实现的是将当前的帖子 ID 传递给我的一个函数。所以像:
my_function($base_url, array('variable_to_post' => $post->ID));