Profile image
Tác giả: fcwordpress
Trang tin cá nhân | Bài đã đăng
Lượt xem

Hiện tại:
1h trước:
24h trước:
Tổng số:
Post type là gì, cách đăng ký post type
Wednesday, October 14, 2015 21:42
% of readers think this story is Fact. Add your two cents.
0

Post type là gì?

B4INREMOTE-aHR0cDovL2Zjd29yZHByZXNzLm5ldC93cC1jb250ZW50L3VwbG9hZHMvMjAxNS8wMS9jdXN0b20tcG9zdC10eXBlLnBuZw==

Post type là gì, cách khai báo như thế nào

Post type là dùng để chỉ phân loại nội dung trong wordpress, ví dụ page và post cũng chỉ là một trường hợp của post type mà thôi

Cách khai báo của nó như sau:

Dưới đây là các khai báo anh/chị edit lại theo nhu cầu nhé

1.Khai báo không có category

add_action( ‘init’, ‘sprocketexpress_create_posttype’ );
function sprocketexpress_create_posttype() {
register_post_type( ‘testimonials’,
array(
‘labels’ => array(
‘name’ => __( ‘Testimonials’ ),
‘singular_name’ => __( ‘Testimonials’ ),
‘add_new’ => _x( ‘Add new’, ‘testimonials’, ‘your-plugin-textdomain’ ),
),
‘public’ => true,
‘has_archive’ => true,
‘rewrite’ => array(‘slug’ => ‘testimonials’),
‘hierarchical’ => true,
‘supports’ => array( ‘title’, ‘editor’, ‘excerpt’, ‘custom-fields’, ‘thumbnail’,’comments’ )
)
);
}

2.Khai báo có category

add_action( ‘init’, ‘tung_taxonomy’ );
function tung_taxonomy() {

register_taxonomy( ‘mblog_cat’, ‘mblog’,
array(
‘labels’ => array(
‘name’ => _x( ‘Categories’, ‘taxonomy general name’, ‘executive’ ),
‘add_new_item’ => __( ‘Add category’, ‘executive’ ),
‘new_item_name’ => __( ‘New category’, ‘executive’ ),
),
‘exclude_from_search’ => true,
‘has_archive’ => true,
‘hierarchical’ => true,
‘rewrite’ => array( ‘slug’ => ‘math-category’, ‘with_front’ => false ),
‘show_ui’ => true,
‘show_tagcloud’ => false,
)
);

}

add_action( ‘init’, ‘create_posttype’ );
function create_posttype() {
register_post_type( ‘mblog’,
array(
‘labels’ => array(
‘name’ => __( ‘Math blog’ ),
‘singular_name’ => __( ‘Math blog’ ),
‘add_new’ => _x( ‘Add new’, ‘mblog’, ‘your-plugin-textdomain’ ),
),
‘public’ => true,
‘has_archive’ => true,
‘rewrite’ => array(‘slug’ => ‘mblog’),
‘hierarchical’ => true,
‘supports’ => array( ‘title’, ‘editor’, ‘excerpt’, ‘custom-fields’, ‘thumbnail’,’comments’ )
)
);

}

BÌNH LUẬN

Lời bình của bạn
Question   Razz  Sad   Evil  Exclaim  Smile  Redface  Biggrin  Surprised  Eek   Confused   Cool  LOL   Mad   Twisted  Rolleyes   Wink  Idea  Arrow  Neutral  Cry   Mr. Green

Tin nổi bật trong ngày
Tin mới nhất

Register

Newsletter

Email this story
Share This Story:
Print this story
Email this story
Digg
Reddit
StumbleUpon
Share on Tumblr
GET ALERTS:

If you really want to ban this commenter, please write down the reason:

If you really want to disable all recommended stories, click on OK button. After that, you will be redirect to your options page.