Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ Release pending.
* Added: Fade out WB REST CACHE Icon @ Admin Bar
* Added: Disable UpdraftPlus @ Admin Bar
* Fixed: Content Type Return @ WP REST CACHE
* Fixed: Force CPTs in Tag Archives
* Changed: Remove Mastodon Account @ Federated Comment extended with Mentions

### 0.8
Expand Down
2 changes: 1 addition & 1 deletion unmus_archives.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

function unmus_custom_post_types_archives($query) {

if ( $query->is_author OR $query->is_date ) {
if ( $query->is_author OR $query->is_date OR $query->is_tag ) {

$query->set( 'post_type', array(
'ello',
Expand Down