• Hello everyone, my problem is that I want to display a single category audio to a specific page. the template makes me see all the audio tracks, but if I wanted to see a specific category, such as audio-remix, or audio-dance, as I do? how to edit the data? thanks

    <?php
    $term = get_queried_object()->slug;
    $audios_nr = of_get_option(‘nr_audio’);
    $query = array(
    ‘post_type’ => ‘audio’,
    ‘posts_per_page’ => $audios_nr,
    ‘paged’ => $paged,
    ‘taxonomy’ => ‘audios’,
    ‘term’ => $term
    );

The topic ‘Select specify category?’ is closed to new replies.