我试图找到第一个将传递当前帖子ID的钩子,因为我想更新当前帖子(通过获取其ID)和提交到该页面的变量。
这是我正在使用的代码:
class my_class {
public function __construct(){
add_action( \'init\', array( $this, \'my_method\' ) );
}
public function my_method( $atts ){
// do my stuff with current page id here.
// even just: echo post id and die();.
}
}
任何挂钩、动作或过滤器,以及使用哪一个以及原因。