checkbox with CPT Categories

CHECKBOX WITH CUSTOM POST TYPE CATEGORIES

Checkbox with CPT (custom post type) categories learn more query_args

Demo

array(
  'id'             => 'unique_option_311',
  'type'           => 'checkbox',
  'title'          => 'Checkbox for CPT Posts',
  'options'        => 'categories',
  'query_args'     => array(
    'type'         => 'movies',
    'taxonomy'     => 'movies_taxonomy',
    'orderby'      => 'post_date',
    'order'        => 'DESC',
  ),
),

Last updated