checkbox with CPT Posts

CHECKBOX WITH Custom Post Type POSTS

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

Demo

array(
  'id'             => 'unique_option_310',
  'type'           => 'checkbox',
  'title'          => 'Checkbox for CPT Posts',
  'options'        => 'posts',
  'query_args'     => array(
    'post_type'    => 'movies',
    'orderby'      => 'post_date',
    'order'        => 'DESC',
  ),
),

Last updated