Open mervb opened 4 years ago
Allow extensions to register themselves (better to not alter the existing code calling the epl_get_core_post_types() function.
/**
@since 2.0.1 Removed global $epl_ai_meta_fields */ function epl_wpimport_pmxi_reimport( $entry, $post ) { if ( ! in_array( $entry, epl_get_core_post_types(), true ) ) { return; }
/// New code that extensions can hook into
// TEMPORARY SOLUTION function add_home_desing_to_core_post_type($post_types) { $post_types[] = 'home_design'; return $post_types; } add_filter( 'epl_core_post_types', 'add_home_desing_to_core_post_type');
Allow extensions to register themselves (better to not alter the existing code calling the epl_get_core_post_types() function.
/**
@since 2.0.1 Removed global $epl_ai_meta_fields */ function epl_wpimport_pmxi_reimport( $entry, $post ) { if ( ! in_array( $entry, epl_get_core_post_types(), true ) ) { return; }
/// New code that extensions can hook into