/** * Add non-supported post type support */ add_filter( 'elementor_pro/utils/get_public_post_types', function() { $post_types['artist'] = 'Artists'; return $post_types; } ); /** * Update the posts widget or portfolio widget query. * * @since 1.0.0 * @param \WP_Query $query The WordPress query instance. */ add_filter( 'pll_get_post_types', 'add_cpt_to_pll', 10, 2 );
Reviews
There are no reviews yet.