$index)) ? ($total_count-$index): $index; } $split_arr = array_splice($array, max(0, $index)); $array = array_merge( $array, $value, $split_arr); } return $array; } /** * Function to get registered post types * * @package accordion-and-accordion-slider * @since 1.0.0 */ function wp_aas_get_post_types() { // Getting registered post type $post_type_args = array( 'public' => true ); $custom_post_types = get_post_types($post_type_args); $custom_post_types = (!empty($custom_post_types) && is_array($custom_post_types)) ? array_keys($custom_post_types) : array(); // Exclude some post type $include_post_types = apply_filters('wp_aas_gallery_support', array(WP_AAS_POST_TYPE)); $custom_post_types = array_merge($custom_post_types, (array)$include_post_types); // Exclude some post type $exclude_post_types = apply_filters('wp_aas_gallery_support', array('attachment')); $custom_post_types = array_diff($custom_post_types, (array)$exclude_post_types); return $custom_post_types; }