After i updated widget logic to 0.51 the plugin stop working. why?
i am using this:
is_post_author('X')
After i updated widget logic to 0.51 the plugin stop working. why?
i am using this:
is_post_author('X')
hard to say. does it work if you simply use 'false' or 'true'. How about in the default theme?
hang on, is_post_author isn't a core wordpress condtional tag. you can make one using
http://codex.wordpress.org/Function_Reference/get_the_author
eg is_single() && ("X"==get_the_author())
might work
You must log in to post.