-
Notifications
You must be signed in to change notification settings - Fork 0
/
radtouren-posttype.php
71 lines (65 loc) · 2.34 KB
/
radtouren-posttype.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
add_action( 'init', 'create_radtouren_post_type' );
function create_radtouren_post_type() {
register_post_type('radtouren',
array(
'label' => 'Radtouren',
'description' => 'Radtouren des ADFC Sachsen-Anhalt e.V. - Auch in Ihrer Nähe!',
'public' => true,
'show_ui' => true,
'show_in_menu' => false,
'capability_type' => 'post',
'hierarchical' => false,
'rewrite' => array('slug' => 'radtour'),
'has_archive' => 'radtouren',
'query_var' => 'radtouren',
'supports' => array('title','editor','custom-fields','comments','revisions','thumbnail','author','page-attributes'),
'taxonomies' => array('schwierigkeitsgrad','veranstalter','besonderheiten'),
'labels' => array (
'name' => 'Radtouren',
'singular_name' => 'Radtour',
'menu_name' => 'Radtouren',
'add_new' => 'Neue Tour',
'add_new_item' => 'Neue Radtour',
'edit' => 'Bearbeiten',
'edit_item' => 'Tour bearbeiten',
'new_item' => 'Neue Tour',
'view' => 'Zeigen',
'view_item' => 'Tour anzeigen',
'search_items' => 'Touren suchen',
'not_found' => 'Keine Touren gefunden',
'not_found_in_trash' => 'Keine Touren im Papierkorb'
)
)
);
register_taxonomy( 'schwierigkeitsgrad', 'radtouren',
array(
'hierarchical' => false,
'label' => 'Schwierigkeitsgrad',
'query_var' => true,
'rewrite' => true,
'singular_label' => 'Schwierigkeitsgrad'
)
);
register_taxonomy('besonderheiten', 'radtouren',
array(
'hierarchical' => true,
'label' => 'Besonderheiten',
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'singular_label' => 'Besonderheit'
)
);
register_taxonomy('veranstalter', 'radtouren',
array(
'hierarchical' => true,
'label' => 'Veranstalter',
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'singular_label' => 'Veranstalter'
)
);
}
?>