<?php
add_theme_support('menus' );
add_theme_support('post-thumbnails' );
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
register_sidebar( array(
'name' =>'sociallinks',
'id' => 's-1',
'description' => __( ''),
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3 style="display:none;">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' =>'footer-1',
'id' => 's-2',
'description' => 'about us content',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3 style="display:none;">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' =>'footer-2',
'id' => 's-3',
'description' => 'most popular',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3 style="display:none;">',
'after_title' => '</h3>',
) );
add_action( 'init', 'create_services_type' );
function create_services_type() {
$labels = array(
'name' => 'خدمات',
'singular_name' => 'خدمات',
'menu_name' => 'خدمات',
'name_admin_bar' => 'خدمات',
'add_new' => 'افزودن',
'add_new_item' => 'مطلب تازه',
'new_item' => 'مطلب جدید',
'edit_item' => 'ویرایش مطلب',
'view_item' => 'مشاهده مطلب',
'all_items' => 'تمام مطالب',
'search_items' => 'جستجو در بین مطالب',
'parent_item_colon' => 'مادر',
'not_found' => 'مطلبی یافت نشد',
'not_found_in_trash' => 'مطلبی در زباله دان یافت نشد'
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'services' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments' )
);
register_post_type( 'services', $args );
}
add_action( 'init', 'create_products_type' );
function create_products_type() {
$labels = array(
'name' => 'محصولات',
'singular_name' => 'محصولات',
'menu_name' => 'محصولات',
'name_admin_bar' => 'محصولات',
'add_new' => 'افزودن',
'add_new_item' => 'مطلب تازه',
'new_item' => 'مطلب جدید',
'edit_item' => 'ویرایش مطلب',
'view_item' => 'مشاهده مطلب',
'all_items' => 'تمام مطالب',
'search_items' => 'جستجو در بین مطالب',
'parent_item_colon' => 'مادر',
'not_found' => 'مطلبی یافت نشد',
'not_found_in_trash' => 'مطلبی در زباله دان یافت نشد'
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'products' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments' )
);
register_post_type( 'products', $args );
}
add_action( 'init', 'create_projects_type' );
function create_projects_type() {
$labels = array(
'name' => 'نمونه کارها',
'singular_name' => 'نمونه کارها',
'menu_name' => 'نمونه کارها',
'name_admin_bar' => 'نمونه کارها',
'add_new' => 'افزودن',
'add_new_item' => 'مطلب تازه',
'new_item' => 'مطلب جدید',
'edit_item' => 'ویرایش مطلب',
'view_item' => 'مشاهده مطلب',
'all_items' => 'تمام مطالب',
'search_items' => 'جستجو در بین مطالب',
'parent_item_colon' => 'مادر',
'not_found' => 'مطلبی یافت نشد',
'not_found_in_trash' => 'مطلبی در زباله دان یافت نشد'
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'projects' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => false,
'supports' => array( 'title', 'excerpt', 'thumbnail')
);
register_post_type( 'projects', $args );
}
add_action( 'init', 'create_goles_type' );
function create_goles_type() {
$labels = array(
'name' => 'آزمایشگاه',
'singular_name' => 'آزمایشگاه',
'menu_name' => 'آزمایشگاه',
'name_admin_bar' => 'آزمایشگاه',
'add_new' => 'افزودن',
'add_new_item' => 'مطلب تازه',
'new_item' => 'مطلب جدید',
'edit_item' => 'ویرایش مطلب',
'view_item' => 'مشاهده مطلب',
'all_items' => 'تمام مطالب',
'search_items' => 'جستجو در بین مطالب',
'parent_item_colon' => 'مادر',
'not_found' => 'مطلبی یافت نشد',
'not_found_in_trash' => 'مطلبی در زباله دان یافت نشد'
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'goles' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => false,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt' )
);
register_post_type( 'goles', $args );
}
add_action( 'init', 'create_prjtype_taxonomies', 0 );
function create_prjtype_taxonomies() {
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => 'مجموعه',
'singular_name' => 'مجموعه',
'search_items' => 'جستجو نوع مجموعه',
'all_items' => 'تمام مجموعه ها',
'parent_item' => 'مجموعه مادر',
'parent_item_colon' => 'مجموعه مادر',
'edit_item' => 'ویرایش مجموعه',
'update_item' => 'بروز رسانی مجموعه',
'add_new_item' => 'افزودن مجموعه',
'new_item_name' => 'مجموعه جدید',
'menu_name' => 'مجموعه ها',
);
$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'prjtype' ),
);
register_taxonomy( 'prjtype','projects' , $args );
}
?>