sermons
sermons
// Register Custom Post Type function sermon() { $labels = array( 'name' => _x( 'דרשות', 'Post Type General Name', 'דרשות' ), 'singular_name' => _x( 'דרשה', 'Post Type Singular Name', 'דרשות' ), 'menu_name' => __( 'דרשות', 'דרשות' ), 'parent_item_colon' => __( 'Parent Item:', 'דרשות' ), 'all_items' => __( 'כל הדרשות', 'דרשות' ), 'view_item' => __( 'צפה בדרשה', 'דרשות' ), 'add_new_item' => __( 'הוסף דרשה חדשה', 'דרשות' ), 'add_new' => __( 'הוסף דרשה חדשה', 'דרשות' ), 'edit_item' => __( 'ערוך דרשות', 'דרשות' ), 'update_item' => __( 'עדכן דרשות', 'דרשות' ), 'search_items' => __( 'חפש דרשות', 'דרשות' ), 'not_found' => __( 'הדרשה לא נמצאה', 'דרשות' ), 'not_found_in_trash' => __( 'הדרשה לא נמצאה', 'דרשות' ), ); $args = array( 'label' => __( 'sermons', 'דרשות' ), 'description' => __( 'הוספת דרשות לאתר', 'דרשות' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'revisions', 'custom-fields', 'page-attributes', 'post-formats', ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-megaphone', 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'sermons', $args ); } // Hook into the 'init' action add_action( 'init', 'sermon', 0 );