在期间获取IDtemplate_redirect
在调用任何小部件之前:
add_action( \'template_redirect\', function(){
$my_plugin = new My_Plugin;
$my_plugin->get_id();
});
class My_Plugin
{
protected $post_id;
public function get_id()
{
if ( is_page() )
$this->post_id = get_the_ID();
}
}
现在您可以使用
$post_id
在同一类的后续方法中。