Query kategori dinamis berdasarkan field

  • avatar Tidak diketahui

    di page saya memasukan kode berikut. tapi yang muncul bukan pos berkategori yang saya inginkan melainkan semua post di tampilkan
    $the_query = new WP_Query( ‘category_name=’.the_field(‘nama_kategori’) );

    if ( $the_query->have_posts() ) : ?>

    <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    <h2><?php the_title(); ?></h2>
    <p><?php the_content(); ?></p>
    <p><?php the_category(); ?></p>
    <?php endwhile;
    wp_reset_postdata();
    else :
    get_template_part( ‘template-parts/content’, ‘none’ );
    endif; ?>

  • Topik ‘Query kategori dinamis berdasarkan field’ tidak lagi menerima balasan baru.