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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
function epl_register_custom_post_type_land() {
$archives = defined( 'EPL_LAND_DISABLE_ARCHIVE' ) && EPL_LAND_DISABLE_ARCHIVE ? false : true;
$slug = defined( 'EPL_LAND_SLUG' ) ? EPL_LAND_SLUG : 'land';
$rewrite = defined( 'EPL_LAND_DISABLE_REWRITE' ) && EPL_LAND_DISABLE_REWRITE ? false : array(
'slug' => $slug,
'with_front' => false,
);
$rest = defined( 'EPL_LAND_DISABLE_REST' ) && EPL_LAND_DISABLE_REST ? false : true;
$labels = apply_filters(
'epl_land_labels',
array(
'name' => __( 'Land', 'easy-property-listings' ),
'singular_name' => __( 'Land', 'easy-property-listings' ),
'menu_name' => __( 'Land', 'easy-property-listings' ),
'add_new' => __( 'Add New', 'easy-property-listings' ),
'add_new_item' => __( 'Add New Land Listing', 'easy-property-listings' ),
'edit_item' => __( 'Edit Land Listing', 'easy-property-listings' ),
'new_item' => __( 'New Land Listing', 'easy-property-listings' ),
'update_item' => __( 'Update Land Listing', 'easy-property-listings' ),
'all_items' => __( 'All Land Listings', 'easy-property-listings' ),
'view_item' => __( 'View Land Listing', 'easy-property-listings' ),
'view_items' => __( 'View Land Listings', 'easy-property-listings' ),
'search_items' => __( 'Search Land Listing', 'easy-property-listings' ),
'not_found' => __( 'Land Listing Not Found', 'easy-property-listings' ),
'not_found_in_trash' => __( 'Land Listing Not Found in Trash', 'easy-property-listings' ),
'parent_item_colon' => __( 'Parent Land Listing:', 'easy-property-listings' ),
)
);
$land_args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => $rewrite,
'menu_icon' => 'dashicons-image-crop',
'capability_type' => 'post',
'has_archive' => $archives,
'hierarchical' => false,
'menu_position' => '26.3',
'show_in_rest' => $rest,
'taxonomies' => array( 'location', 'tax_feature' ),
'supports' => apply_filters( 'epl_land_supports', array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ) ),
);
epl_register_post_type( 'land', 'Land', apply_filters( 'epl_land_post_type_args', $land_args ) );
}
add_action( 'init', 'epl_register_custom_post_type_land', 0 );
if ( is_admin() ) {
function epl_manage_land_columns_heading( $columns ) {
global $epl_settings;
$columns = array(
'cb' => '<input type="checkbox" />',
'property_featured' => '<span class="dashicons dashicons-star-half"></span><span class="epl-manage-featured">' . __( 'Featured', 'easy-property-listings' ) . '</span>',
'property_thumb' => __( 'Image', 'easy-property-listings' ),
'property_price' => __( 'Price', 'easy-property-listings' ),
'title' => __( 'Address', 'easy-property-listings' ),
'listing' => __( 'Listing Details', 'easy-property-listings' ),
'listing_id' => __( 'Unique ID', 'easy-property-listings' ),
'geo' => __( 'Geo', 'easy-property-listings' ),
'property_status' => __( 'Status', 'easy-property-listings' ),
'agent' => __( 'Agent', 'easy-property-listings' ),
'date' => __( 'Date', 'easy-property-listings' ),
) + $columns;
unset( $columns['author'] );
unset( $columns['comments'] );
if ( 1 !== (int) epl_get_option( 'debug', 0 ) ) {
unset( $columns['geo'] );
}
if ( 1 !== (int) epl_get_option( 'admin_unique_id', 0 ) ) {
unset( $columns['listing_id'] );
}
return apply_filters( 'epl_post_type_land_admin_columns', $columns );
}
add_filter( 'manage_edit-land_columns', 'epl_manage_land_columns_heading' );
function epl_manage_land_columns_value( $column, $post_id ) {
switch ( $column ) {
case 'property_featured':
do_action( 'epl_manage_listing_column_featured' );
break;
case 'property_thumb':
do_action( 'epl_manage_listing_column_property_thumb' );
break;
case 'listing':
do_action( 'epl_manage_listing_column_listing' );
break;
case 'listing_id':
do_action( 'epl_manage_listing_column_listing_id' );
break;
case 'geo':
do_action( 'epl_manage_listing_column_geo' );
break;
case 'property_price':
do_action( 'epl_manage_listing_column_price' );
break;
case 'property_status':
do_action( 'epl_manage_listing_column_property_status' );
break;
case 'agent':
do_action( 'epl_manage_listing_column_agent' );
break;
default:
break;
}
}
add_action( 'manage_land_posts_custom_column', 'epl_manage_land_columns_value', 10, 2 );
}