Posts

Showing posts from March, 2022

Custom Carousel using Function.php Custom post type using shortcode [custom-post-type] example.

 /* STUDY ABROAD */ function studyabroads_register() {  $labels = array(   'name' => _x('Studyabroad', 'post type general name'),   'singular_name' => _x('studyabroads', 'post type singular name'),   'add_new' => _x('Add New', 'review'),   'add_new_item' => __('Add New Studyabroads'),   'edit_item' => __('Edit Studyabroads'),   'new_item' => __('New Studyabroads'),   'view_item' => __('View Studyabroads'),   'search_items' => __('Search Studyabroads'),   'not_found' =>  __('Nothing found'),   'not_found_in_trash' => __('Nothing found in Trash'),   'parent_item_colon' => ''  );  $args = array(   'labels' => $labels,   'public' => true,   'publicly_queryable' => true,   'show_ui' => true,   'query_var'...