نمونه کارها
// Register Custom Post Type
function work_samples_codebest() {
$labels = array(
'name' => _x( 'نمونه کارها', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'نمونه کار', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'نمونه کار', 'text_domain' ),
'name_admin_bar' => __( 'نمونه کارها', 'text_domain' ),
'archives' => __( 'آرشیو نمونه کارها', 'text_domain' ),
'attributes' => __( 'ویژگی های آیتم', 'text_domain' ),
'parent_item_colon' => __( 'آیتم والد', 'text_domain' ),
'all_items' => __( 'همه نمونه کارها', 'text_domain' ),
'add_new_item' => __( 'نمونه کار جدید', 'text_domain' ),
'add_new' => __( 'اضافه کردن نمونه کار', 'text_domain' ),
'new_item' => __( 'جدید', 'text_domain' ),
'edit_item' => __( 'ویرایش نمونه کار', 'text_domain' ),
'update_item' => __( 'بروزرسانی نمونه کار', 'text_domain' ),
'view_item' => __( 'مشاهده', 'text_domain' ),
'view_items' => __( 'مشاهده نمونه کارها', 'text_domain' ),
'search_items' => __( 'جستجو در نمونه کارها', 'text_domain' ),
'not_found' => __( 'چیزی یافت نشد', 'text_domain' ),
'not_found_in_trash' => __( 'چیزی در سطل زباله یافت نشد', 'text_domain' ),
'featured_image' => __( 'تصویر نمونه کار', 'text_domain' ),
'set_featured_image' => __( 'ست کردن تصویر', 'text_domain' ),
'remove_featured_image' => __( 'پاک کردن تصویر', 'text_domain' ),
'use_featured_image' => __( 'استفاده از تصویر', 'text_domain' ),
'insert_into_item' => __( 'درج اطلاعات', 'text_domain' ),
'uploaded_to_this_item' => __( 'آپلود برای این مورد', 'text_domain' ),
'items_list' => __( 'همه لیست نمونه کارها', 'text_domain' ),
'items_list_navigation' => __( 'لیست نمونه کارها', 'text_domain' ),
'filter_items_list' => __( 'فیلتر نمونه کارها', 'text_domain' ),
);
$args = array(
'label' => __( 'نمونه کار', 'text_domain' ),
'description' => __( 'نمونه کارهای وب سایت ها', 'text_domain' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields' ),
'taxonomies' => array( 'category', 'post_tag' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => 'work-samples',
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
);
register_post_type( 'work_samples_codebes', $args );
}
add_action( 'init', 'work_samples_codebest', 0 );