function register_career() {
$labels = array(
'name' => 'Career',
'singular_name' => 'Careers',
'menu_name' => 'Careers',
'parent_item_colon' => 'Parent Career:',
'all_items' => 'All Careers',
'view_item' => 'View Career',
'add_new_item' => 'Add New Career',
'add_new' => 'New Career',
'edit_item' => 'Edit Career',
'update_item' => 'Update Career',
'search_items' => 'Search Careers',
'not_found' => 'No Careers found',
'not_found_in_trash' => 'No Careers found in Trash',
);
$args = array(
'label' => 'Career',
'description' => 'Career post type',
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'page-attributes'),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'menu_position' => 19,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'capability_type' => 'page',
'menu_icon' => 'dashicons-businessman',
);
register_post_type( 'career', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_career');
function register_listing() {
$labels = array(
'name' => 'Listings',
'singular_name' => 'Listings',
'menu_name' => 'Listings',
'parent_item_colon' => 'Parent Listing:',
'all_items' => 'All Listings',
'view_item' => 'View Listing',
'add_new_item' => 'Add New Listing',
'add_new' => 'New Listing',
'edit_item' => 'Edit Listing',
'update_item' => 'Update Listing',
'search_items' => 'Search Listings',
'not_found' => 'No Listings found',
'not_found_in_trash' => 'No Listings found in Trash',
);
$args = array(
'label' => 'Listings',
'description' => 'Listings post type',
'labels' => $labels,
'supports' => array( 'title', 'thumbnail', 'revisions', 'page-attributes', 'editor'),
'hierarchical' => true,
'public' => false,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'menu_position' => 22,
'capability_type' => 'page',
'menu_icon' => 'dashicons-admin-home',
);
register_post_type( 'listing', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_listing');
function register_private_listing() {
$labels = array(
'name' => 'Private Listings',
'singular_name' => 'Private Listings',
'menu_name' => 'Private Listings',
'parent_item_colon' => 'Parent Private Listing:',
'all_items' => 'All Private Listings',
'view_item' => 'View Private Listing',
'add_new_item' => 'Add New Private Listing',
'add_new' => 'New Private Listing',
'edit_item' => 'Edit Private Listing',
'update_item' => 'Update Private Listing',
'search_items' => 'Search Private Listings',
'not_found' => 'No Private Listings found',
'not_found_in_trash' => 'No Private Listings found in Trash',
);
$args = array(
'label' => 'Private Listings',
'description' => 'Private Listings post type',
'labels' => $labels,
'supports' => array( 'title', 'thumbnail', 'excerpt', 'revisions', 'page-attributes', 'editor'),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'menu_position' => 22,
'capability_type' => 'page',
'menu_icon' => 'dashicons-admin-home',
);
register_post_type( 'private_listing', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_private_listing');
function register_service() {
$labels = array(
'name' => 'Services',
'singular_name' => 'Services',
'menu_name' => 'Services',
'parent_item_colon' => 'Parent Service:',
'all_items' => 'All Services',
'view_item' => 'View Service',
'add_new_item' => 'Add New Service',
'add_new' => 'New Service',
'edit_item' => 'Edit Service',
'update_item' => 'Update Service',
'search_items' => 'Search Services',
'not_found' => 'No Services found',
'not_found_in_trash' => 'No Services found in Trash',
);
$args = array(
'label' => 'Services',
'description' => 'Services post type',
'labels' => $labels,
'supports' => array( 'title', 'thumbnail', 'revisions', 'page-attributes', 'editor'),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'menu_position' => 22,
'capability_type' => 'post',
'menu_icon' => 'dashicons-hammer',
);
register_post_type( 'service', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_service');
function register_team() {
$labels = array(
'name' => 'Team',
'singular_name' => 'Team Member',
'menu_name' => 'Team',
'parent_item_colon' => 'Parent Team Member:',
'all_items' => 'All Team Members',
'view_item' => 'View Team Member',
'add_new_item' => 'Add New Team Member',
'add_new' => 'New Team Member',
'edit_item' => 'Edit Team Member',
'update_item' => 'Update Team Member',
'search_items' => 'Search Team',
'not_found' => 'No Team Member found',
'not_found_in_trash' => 'No Team Member found in Trash',
);
$args = array(
'label' => 'Team',
'description' => 'Team post type',
'labels' => $labels,
'supports' => array( 'title', 'thumbnail', 'revisions', 'page-attributes', 'editor'),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'menu_position' => 22,
'capability_type' => 'page',
'menu_icon' => 'dashicons-groups',
);
register_post_type( 'team', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_team');
function register_tenant() {
$labels = array(
'name' => 'Tenants',
'singular_name' => 'Tenant',
'menu_name' => 'Tenants',
'parent_item_colon' => 'Parent Tenant:',
'all_items' => 'All Tenants',
'view_item' => 'View Tenant',
'add_new_item' => 'Add New Tenant',
'add_new' => 'New Tenant',
'edit_item' => 'Edit Tenant',
'update_item' => 'Update Tenant',
'search_items' => 'Search Tenants',
'not_found' => 'No Tenants found',
'not_found_in_trash' => 'No Tenants found in Trash',
);
$args = array(
'label' => 'Tenants',
'description' => 'Tenants post type',
'labels' => $labels,
'supports' => array( 'title', 'thumbnail', 'revisions', 'page-attributes'),
'hierarchical' => true,
'public' => false,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'menu_position' => 19,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'capability_type' => 'page',
'menu_icon' => 'dashicons-awards',
);
register_post_type( 'tenant', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_tenant');
function register_video() {
$labels = array(
'name' => 'Videos',
'singular_name' => 'Video',
'menu_name' => 'Videos',
'parent_item_colon' => 'Parent Video:',
'all_items' => 'All Videos',
'view_item' => 'View Video',
'add_new_item' => 'Add New Video',
'add_new' => 'New Video',
'edit_item' => 'Edit Video',
'update_item' => 'Update Video',
'search_items' => 'Search Videos',
'not_found' => 'No Videos found',
'not_found_in_trash' => 'No Videos found in Trash',
);
$args = array(
'label' => 'Video',
'description' => 'Video post type',
'labels' => $labels,
'supports' => array( 'title', 'revisions', 'page-attributes'),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'menu_position' => 19,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'capability_type' => 'page',
'menu_icon' => 'dashicons-video-alt3',
);
register_post_type( 'video', $args );
}
// Hook into the 'init' action
add_action( 'init', 'register_video');
Flocke & Avoyer Commercial Real Estate
Retail Collection
Civita
Friars Road at Qualcomm Way
San Diego, CA 92108
Fenton Marketplace
SEC Friars Road & Fenton Parkway
San Diego, CA 92108
San Ysidro Village
340-418 W San Ysidro Blvd
San Ysidro, CA 92173
Miramar Village West
7160-7180 Miramar Rd
San Diego, CA 92121
Solana Beach Towne Centre
663-689 Lomas Santa Fe Dr
Solana Beach, CA 92075
Midway Plaza
3445 Midway Drive
San Diego, CA 92110
Bonita Point
NWC Otay Lakes Rd & East H St
Chula Vista, CA 91910
1202 Market St.
1202 Market St.
San Diego, CA 92101
Lomas Santa Fe Plaza
905-993 Lomas Santa Fe Dr
Solana Beach, CA 92075
1512 Main St.
1512 Main St.
Ramona, CA 92065
View All Listings