Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm calling some post data via an ajax-request where I submit the postId. Unfortunately the responsed content kicks my [gallery]-shortcode when I use apply_filters('the_content') onto the post content. I already added the add_theme_support():

add_theme_support( 'post-formats', array( 'gallery', 'status', 'quote', 'image' ) );     

But because the ajax-request just includes the wp-load.php their seems not to be a valid theme where the theme_support can be used. How can I get wordpress parse the gallery-shortcode just when I include the wp-load.php and make my own stuff after it?

require_once('wp-load.php');

add_theme_support( 'post-formats', array( 'aside', 'link', 'gallery', 'status', 'quote', 'image' ) );         

$postData = get_post($_GET['id_post']);
$postContent = apply_filters('the_content', $postData->post_content);

When I request get_the_theme() I get my current theme and when I call get_the_support('post-formats') I also get 'gallery' as a result. do_shortcode('[gallery]') doesnt work either. But when I call my post outside the ajax (as a normal post via its URL) I get the gallery -.- What am I missing to do?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.