1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
function epl_register_taxonomy_features() {
$slug = defined( 'EPL_FEATURES_SLUG' ) ? EPL_FEATURES_SLUG : 'feature';
$hierarchical = defined( 'EPL_FEATURES_HIERARCHICAL' ) && EPL_FEATURES_HIERARCHICAL ? true : false;
$rewrite = defined( 'EPL_FEATURES_DISABLE_REWRITE' ) && EPL_FEATURES_REWRITE ? false : array(
'slug' => $slug,
'with_front' => true,
'hierarchical' => $hierarchical,
);
$rest = defined( 'EPL_FEATURES_DISABLE_REST' ) && EPL_FEATURES_ENABLE_REST ? false : true;
$labels = array(
'name' => _x( 'Features', 'Taxonomy General Name', 'easy-property-listings' ),
'singular_name' => _x( 'Feature', 'Taxonomy Singular Name', 'easy-property-listings' ),
'menu_name' => __( 'Features', 'easy-property-listings' ),
'all_items' => __( 'All Features', 'easy-property-listings' ),
'parent_item' => __( 'Parent Feature', 'easy-property-listings' ),
'parent_item_colon' => __( 'Parent Feature:', 'easy-property-listings' ),
'new_item_name' => __( 'New Feature Name', 'easy-property-listings' ),
'add_new_item' => __( 'Add New Feature', 'easy-property-listings' ),
'edit_item' => __( 'Edit Feature', 'easy-property-listings' ),
'update_item' => __( 'Update Feature', 'easy-property-listings' ),
'separate_items_with_commas' => __( 'Separate Feature with commas', 'easy-property-listings' ),
'search_items' => __( 'Search Feature', 'easy-property-listings' ),
'add_or_remove_items' => __( 'Add or remove Feature', 'easy-property-listings' ),
'choose_from_most_used' => __( 'Choose from the most used Feature', 'easy-property-listings' ),
'not_found' => __( 'Feature Not Found', 'easy-property-listings' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => $hierarchical,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
'show_in_rest' => $rest,
'rewrite' => $rewrite,
);
register_taxonomy( 'tax_feature', array( 'property', 'rental', 'land', 'rural', 'business', 'commercial', 'commercial_land' ), $args );
}
add_action( 'init', 'epl_register_taxonomy_features', 0 );