ソースを参照

Create groups custom taxonomy

master
Adrian Short 9年前
コミット
37b04ac02a
1個のファイルの変更17行の追加0行の削除
  1. +17
    -0
      talhyperlocal.php

+ 17
- 0
talhyperlocal.php ファイルの表示

@@ -77,6 +77,22 @@ function talhyperlocal_init() {
);
register_taxonomy( 'countries', array( 'site' ), $args );

// Create taxonomy: Hyperlocal Groups
$args = array(
'labels' => array(
'name' => 'Groups',
),
'hierarchical' => false,
'show_ui' => true,
'query_var' => true,
'rewrite' => array(
'slug' => 'groups',
'with_front' => true,
),
'show_admin_column' => true,
);
register_taxonomy( 'groups', array( 'site' ), $args );

// Create taxonomy: Platforms
$args = array(
'labels' => array(
@@ -92,5 +108,6 @@ function talhyperlocal_init() {
'show_admin_column' => true,
);
register_taxonomy( 'platforms', array( 'site' ), $args );

}
add_action( 'init', 'talhyperlocal_init' );

読み込み中…
キャンセル
保存