get_post_type_object( 'post' ), 'page' => get_post_type_object( 'page' ), ); return $builtin_types; } /** * Get the list of custom post types. * * @since 6.0.0 * * @return \WP_Post_Type[] List of custom post types. */ function bd_get_custom_post_types() { $custom_types = get_post_types( array( '_builtin' => false ), 'objects' ); return $custom_types; } /** * Render Post type dropdown. * * @param string $field_slug Field slug. */ function bd_render_post_type_dropdown( $field_slug ) { $builtin_post_types = bd_get_builtin_public_post_types(); $custom_post_types = bd_get_custom_post_types(); ?>