function woolearn() { register_post_type( 'woolearn', array( 'labels' => array( 'name' => __( 'وولرن جدید'), 'singular_name' => __( 'وولرن'), 'new_item' => __( 'وولرن' ) ), 'public' => true, 'menu_icon' => 'dashicons-embed-post', 'menu_position' => 5, 'supports' => array( 'title','thumbnail','editor','excerpt', ), 'taxonomies' => array('category', 'post_tag','editor', 'comments','custom-fields'), ) ); } add_action( 'init', 'woolearn' );