I have,

function my_function_init(){
    global $post;
    if(is_single()) {
        echo $post->ID;
    }
}
add_action('init', 'my_function_init');

this doesn't work for me, it doesn't recognize if its a post even if its a post (is_single() = checks if its a post), i have this in the plugin i am writing for wordpress, please help

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I got it the solution is

add_action('get_header', 'my_function_init');

thats the fix :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.