create
Метод create класса SP_Framework_Post_Type создает кастомный пост тайп(post type). В качестве параметров используется массив args.
Пример
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?php $spPT = new SP_Framework_Post_Type(); $args = array( 'name' => 'custom_post_type', 'slug' => 'custom_post_type_slug', 'label' => 'Custom Post Type', 'all_items' => 'All', 'add_new' => 'Add', 'add_new_item' => 'Add', 'edit_item' => 'Edit', 'new_item' => 'New', 'view_item' => 'View', 'view_items' => 'View', 'search_items' => 'Search', 'not_found' => 'Not found', 'not_found_in_trash' => 'Not found in trash', 'menu_icon' => 'dashicons-format-image', 'supports' => array('title', 'thumbnail', 'editor'), 'hidden' => 'y', ); $spPT->create($args); ?> |