acf/fields/taxonomy/wp_list_categories

Last updated Feb 17, 2022

Description

Filters the query $args used by WP_Term_Query to display terms in the Taxonomy field when displayed as a Radio or Checkbox list.

Changelog

  • Added in version 4.0.0

Parameters

apply_filters( 'acf/fields/taxonomy/wp_list_categories', $args, $field );
  • $args (array) The query args. See wp_list_categories() for available args.
  • $field (array) The field array containing all settings.

Modifers

This filter provides modifiers to target specific fields. The following filter names are available:

  • acf/fields/taxonomy/wp_list_categories Applies to all fields.
  • acf/fields/taxonomy/wp_list_categories/name={$name} Applies to all fields of a specific name.
  • acf/fields/taxonomy/wp_list_categories/key={$key} Applies to all fields of a specific key.

Example

This example demonstrates how to modify some of the Taxonomy field wp_list_categories args.

functions.php

<?php
add_filter('acf/fields/taxonomy/wp_list_categories', 'my_acf_fields_taxonomy_query', 10, 2);
function my_acf_fields_taxonomy_query( $args, $field ) {

    // Order by most used.
    $args['orderby'] = 'count';
    $args['order'] = 'DESC';

    return $args;
}
Supercharge Your Website With Premium Features Using ACF PRO

Speed up your workflow and unlock features to better develop websites using ACF Blocks and Options Pages, with the Flexible Content, Repeater, Clone, Gallery Fields & More.

Explore Features View Pricing

PRO Features
ACF Blocks
Options Pages
PRO Fields
Repeater
Flexible Content
Gallery
Clone

Related