Skip to content

Commit 85f25a6

Browse files
authored
Merge pull request #125 from NickOrtiz/feature/increase-taxonomy-pagination
Fix taxonomy pagination limit - addresses #124
2 parents 9fe3b99 + 97d1c43 commit 85f25a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/taxonomy-query-control.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const TaxonomyQueryControl = ( { attributes, setAttributes } ) => {
3737

3838
const availableTaxonomies = useSelect( ( select ) =>
3939
select( coreStore )
40-
.getTaxonomies()
40+
.getTaxonomies( { per_page: 50 } )
4141
?.filter( ( { types } ) =>
4242
types.some( ( type ) =>
4343
[ postType, ...multiplePosts ].includes( type )

0 commit comments

Comments
 (0)