Home Forums WTI Like Post PRO custom post type taxonomy Reply To: custom post type taxonomy

#706
ジョンジョン
Participant
            <?php
        }
 
        public function add_taxonomy_dropdown_args( $cat_args ) {
            $cat_args['taxonomy'] = $this->taxonomy;
            return $cat_args;
        }
 
        private function get_taxonomies() {
            $taxonomies = get_taxonomies( array(
                'public' => true,
            ) );
            return $taxonomies;
        }
    }
    unregister_widget( 'WtiMostLikedPosts' );
    register_widget( 'WtiMostLikedPosts_Taxonomy' );
}
add_action( 'widgets_init', 'override_WtiMostLikedPosts' );