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?