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
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
function epl_register_custom_post_type_contact() {
$archives = defined( 'EPL_CONTACT_DISABLE_ARCHIVE' ) && EPL_CONTACT_DISABLE_ARCHIVE ? false : true;
$slug = defined( 'EPL_CONTACT_SLUG' ) ? EPL_CONTACT_SLUG : 'epl-contact';
$rewrite = defined( 'EPL_CONTACT_DISABLE_REWRITE' ) && EPL_CONTACT_DISABLE_REWRITE ? false : array(
'slug' => $slug,
'with_front' => false,
);
$labels = apply_filters(
'epl_contact_labels',
array(
'name' => __( 'Contacts', 'easy-property-listings' ),
'singular_name' => __( 'Contact', 'easy-property-listings' ),
'menu_name' => __( 'Contact', 'easy-property-listings' ),
'add_new' => __( 'Add New', 'easy-property-listings' ),
'add_new_item' => __( 'Add New Contact', 'easy-property-listings' ),
'edit_item' => __( 'Edit Contact', 'easy-property-listings' ),
'new_item' => __( 'New Contact', 'easy-property-listings' ),
'update_item' => __( 'Update Contact', 'easy-property-listings' ),
'all_items' => __( 'All Contacts', 'easy-property-listings' ),
'view_item' => __( 'View Contact', 'easy-property-listings' ),
'view_items' => __( 'View Contacts', 'easy-property-listings' ),
'search_items' => __( 'Search Contact', 'easy-property-listings' ),
'not_found' => __( 'Contact Not Found', 'easy-property-listings' ),
'not_found_in_trash' => __( 'Contact Not Found in Trash', 'easy-property-listings' ),
'parent_item_colon' => __( 'Parent Contact:', 'easy-property-listings' ),
)
);
$contact_args = array(
'labels' => $labels,
'public' => false,
'publicly_queryable' => false,
'show_ui' => true,
'show_in_menu' => false,
'query_var' => false,
'rewrite' => $rewrite,
'menu_icon' => 'dashicons-admin-home',
'capability_type' => 'post',
'has_archive' => $archives,
'hierarchical' => false,
'supports' => apply_filters( 'epl_contact_supports', array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ) ),
);
register_post_type( 'epl_contact', apply_filters( 'epl_contact_post_type_args', $contact_args ) );
}
add_action( 'init', 'epl_register_custom_post_type_contact', 0 );