We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c79d75a commit 5165009Copy full SHA for 5165009
src/DetectCategoryPaginationURLs.php
@@ -26,7 +26,8 @@ public static function detect() : array {
26
foreach ( $taxonomies as $taxonomy ) {
27
/** @var list<\WP_Term> $terms */
28
$terms = get_terms(
29
- [ $taxonomy->name ],
+ // @phpstan-ignore-next-line
30
+ $taxonomy->name,
31
[ 'hide_empty' => true ]
32
);
33
src/DetectCategoryURLs.php
@@ -21,7 +21,8 @@ public static function detect() : array {
21
22
23
24
25
0 commit comments