Support

Account

Forum Replies Created

  • Hi brendan,
    I’m having similar problem, I cann’t show ACF fields content, only WordPress “content” textarea value is shown, could you help me?
    My code:

    
        $args       = array( 'post_type' => 'page', 'name' => 'movies', 'post_status' => 'publish' );
        $wp_query   = new WP_Query( $args );
        $output     = "";
    
        while ( $wp_query->have_posts() ) {
            $wp_query->the_post();
            $output .= apply_filters('the_content', get_the_content());    
        }
        
        wp_reset_query();
    
        return $output;

    Thank you

Viewing 1 post (of 1 total)