• Resolved pharefm

    (@pharefm)


    How can we build a page that lists all the podcasts series with it’s image, short description, maybe links to subscribe?
    Similar to a custom post type “archive” page (but taxonomies don’t have built-in archives right?).

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @pharefm.

    To create a template that will only affect your podcast series archives and no other pages, open up your theme (or child theme) folder and make a copy of the taxonomy.php file, naming your copy taxonomy-series.php. This new file will now control the display of your podcast series archives so you can customise it as much as you like.

    Thread Starter pharefm

    (@pharefm)

    Not sure that answers my question.
    I don’t want to style a series content,
    but I want to create a page that lists all the podcast series

    Hello @pharefm,

    There isn’t a way out of the box to do that with the plugin currently. You could use the podcast shortcode [podcast_playlist series=”series-slug”] to display one series and use that for each series in you want to display. Or you could write a php function around

    $terms = get_terms([
            'taxonomy' => 'series',
            'hide_empty' => false,
        ]);

    Which would give you the series data, and then you’d need to loop through the $terms array and output the required html

    $terms = get_terms(array(
            'taxonomy' => 'series',
            'hide_empty' => false,
        ));

    Hope that helps move you in the right direction. Let us know if there is anything else we can do to help

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Page that lists Series’ is closed to new replies.