Skip to main content

Custom Taxonomy Widget

Introduction

By default, WordPress does not have a widget for custom taxonomies registered by themes and plugins. The custom taxonomy widget service adds a widget to allow your theme to display a listing of posts inside that taxonomy.

Enabling the Service

config.php
<?php

use WPN\Plugins\CustomTaxonomyListWidget;

return [
'plugins' => [
CustomTaxonomyListWidget::class
]
];