Tagged Questions
2
votes
3answers
195 views
Conditional check for front-end which includes ajax
I need a conditional which exits if the context is not a front-end view including AJAX requests. I have this at the moment:
if (is_admin() && !DOING_AJAX)
return;
The DOING_AJAX bit ...
1
vote
1answer
204 views
is_page() conditional not working inside an AJAX function
I have a jQuery ui tabs that load posts via ajax on sidebar. Now in a specific page i want to filter the query post via is_page(); conditional. But in my case its not working.
function ...