Custom Post Type’lara Custom Taxonomy Eklemek
Hakan // 21 July 2011 // 0 comment(s) // category: Web, WordpressPost Type’ımıza “Anahtar Kelime” eklemek istediğimizi varsayıyorum. En basit haliyle Custom Post Type’lara Custom Taxonomy eklemek için bu yazıdaki örnek kodda
register_post_type( 'products', $args );
satırının hemen altına
$tax_labes = array( 'name' => 'Anahtar Kelime', 'singular_name' => 'Anahtar Kelime', ); $tax_args = array( 'labels' => $tax_labes, ); register_taxonomy( 'anahtarkelime', 'products' , $tax_args );
eklememiz yeterli.
Tags: custom post type > custom post types > custom taxonomy > register_post_type > register_taxonomy