easypropertylistings / epl-xml-csv-listing-import

Import Listings into Easy Property Listings
GNU General Public License v2.0
7 stars 2 forks source link

2.1 FEATURE : Allow Extensions to register themselves to use the Easy Property Listings Custom Fields #106

Open mervb opened 4 years ago

mervb commented 4 years ago

image

Allow extensions to register themselves (better to not alter the existing code calling the epl_get_core_post_types() function.

/**

mervb commented 4 years ago

// 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');