Display page of custom post type taxonomy in Wordpress (ok)
https://stackoverflow.com/questions/19719469/display-page-of-custom-post-type-taxonomy-in-wordpress
add_action('init', 'property_new_dev_taxonomies');
function property_new_dev_taxonomies() {
register_taxonomy('new-developments',
'listing',
array (
'labels' => array (
'name' => 'New Developments',
'singluar_name' => 'New Developments',
'search_items' => 'Search New Developments',
'popular_items' => 'Popular New Developments',
'all_items' => 'All New Developments',
'parent_item' => 'Parent New Development',
'parent_item_colon' => 'Parent New Development:',
'edit_item' => 'Edit New Development',
'update_item' => 'Update New Development',
'add_new_item' => 'Add New Development',
'new_item_name' => 'New Developments',
),
'hierarchical' => true,
'show_ui' => true,
'show_tagcloud' => true,
'rewrite' => array( 'slug' => 'new-developments'),
'query_var' => 'new-developments',
'public'=>true)
);
}1 Answer
PreviousTạo file hiển thị custom post type & custom taxonomy, register_post_type (ok)NextCó id image nhưng vòng lặp Wp_Query không nhận. style2.track360.xyz (ok)
Last updated