2
在WordPress中可以獲取send_headers鉤子中當前帖子的ID嗎?全局$ post和$ wp_query不起作用,或者我做錯了什麼。在WordPress的send_headers動作中獲取帖子ID
class myClass {
public function __construct() {
add_action('send_headers', array($this, 'myFunction'));
}
public function myFunction() {
// need to get post ID here
}
我一直在'send_headers'操作中試圖通過'$ post'和'$ wp_query'獲取帖子ID,但這也對我來說也是失敗的。 – 2015-06-03 14:13:33