admin管理员组

文章数量:1389758

I have one custom post type named as 'portfolio', I want to customize and display archives (only cpt archives) on sidebar 'archive-portfolio.php'.

How to customize this

<?php
    wp_get_archives(
    apply_filters(
    'widget_archives_args',
    array(
        'type'   => 'monthly',
        'show_post_count' => $count,
        ),
        $instance
        )
        );
    ?>

本文标签: functionsHow to customize archive widget only for cpt