- get the post id in wordpress plugin
- global $post;
- $current_page_id = $post->ID;
- var_dump($current_page_id);
- add_action('wp_footer', 'test');
- function test(){
- global $post;
- $current_page_id=$post->ID;
- }
- my_function($base_url, array('variable_to_post'=>$post->ID));