Stories by diya

0

How To Create Custom Post Type In WordPress (Without Plugin) makeyourmood.inban site

function material_init { $labels = array( ‘name' => esc_html__('Materials', 'themedomain' ), 'singular_name' => esc_html__('Material Item', 'themedomain' ), 'add_new' => esc_html__('Add New Item', 'themedomain' ), 'add_new_item' => esc_html__('Add New Material Item', 'themedomain' ), 'edit_item' => esc_html__('Edit Material Item', 'themedomain' ), 'new_item' => esc_html__('Add New Material Item', 'themedomain' ), 'view_item' => esc_html__('View Item', 'themedomain' ), 'search_items' => esc_html__('Search Material', 'themedomain' ), 'not_found' => esc_html__('No material items found', 'themedomain' ), 'not_found_in_trash' => esc_html__('No material items found in trash', 'themedomain' ) ); $args = array( 'labels' => $labels, 'public' => true, 'show_ui' => true, 'menu_icon' => 'dashicons-paperclip', 'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', 'comments', 'author', 'custom-fields', 'revisions' ),
category fun posted by diya 4 months ago 2 comments edit flag/unflag delete delete and ban this url