-
Notifications
You must be signed in to change notification settings - Fork 0
/
wpsvse_blog.php
107 lines (93 loc) · 3.31 KB
/
wpsvse_blog.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/*
Plugin Name: WPSV Blogg (CPT+CT)
Description: Anpassad posttyp och tillhörande taxonomi för WordPress Sveriges blogg.
Version: 0.1
License: GPL
Author: WordPress Sverige
Author URI: http://wpsv.se
*/
/**
* Register custom post type for blog posts
* separated from WPs regular posts.
*/
add_action( 'init', 'wpsvse_cpt_blog' );
function wpsvse_cpt_blog() {
$labels = array(
'name' => _x( 'Blogginlägg', 'wpsvse' ),
'singular_name' => _x( 'Blogginlägg', 'wpsvse' ),
'add_new' => _x( 'Skapa nytt', 'wpsvse' ),
'add_new_item' => _x( 'Skapa nytt blogginlägg', 'wpsvse' ),
'edit_item' => _x( 'Redigera blogginlägg', 'wpsvse' ),
'new_item' => _x( 'Nytt blogginlägg', 'wpsvse' ),
'view_item' => _x( 'Visa blogginlägg', 'wpsvse' ),
'search_items' => _x( 'Sök blogginlägg', 'wpsvse' ),
'not_found' => _x( 'Inga blogginlägg funna', 'wpsvse' ),
'not_found_in_trash' => _x( 'Inga blogginlägg funna i papperskorgen', 'wpsvse' ),
'menu_name' => _x( 'Blogg', 'wpsvse' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'trackbacks', 'custom-fields', 'comments' ),
'taxonomies' => array( 'blog_category', 'post_tag' ),
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-nametag',
'show_in_nav_menus' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'has_archive' => true,
'query_var' => true,
'can_export' => true,
'rewrite' => array(
'slug' => 'blogg',
'with_front' => true,
'feeds' => true,
'pages' => true
),
'capability_type' => 'post'
);
register_post_type( 'wpsvse_blog', $args );
}
/**
* Register custom taxonomy for blog categories.
*/
add_action( 'init', 'wpsvse_taxonomy_categories' );
function wpsvse_taxonomy_categories() {
$labels = array(
'name' => _x( 'Bloggkategorier', 'wpsvse' ),
'singular_name' => _x( 'Bloggkategori', 'wpsvse' ),
'search_items' => _x( 'Sök bloggkategori', 'wpsvse' ),
'popular_items' => _x( 'Populära bloggkategorier', 'wpsvse' ),
'all_items' => _x( 'Alla bloggkategorier', 'wpsvse' ),
'parent_item' => _x( 'Huvudkategori', 'wpsvse' ),
'parent_item_colon' => _x( 'Bloggkategori', 'wpsvse' ),
'edit_item' => _x( 'Redigera bloggkategori', 'wpsvse' ),
'update_item' => _x( 'Uppdatera bloggkategori', 'wpsvse' ),
'add_new_item' => _x( 'Lägg till ny bloggkategori', 'wpsvse' ),
'new_item_name' => _x( 'Ny bloggkategori', 'wpsvse' ),
'add_or_remove_items' => _x( 'Lägg till eller ta bort bloggkategorier', 'wpsvse' ),
'choose_from_most_used' => _x( 'Välj bland mest använda bloggkategorier', 'wpsvse' ),
'menu_name' => _x( 'Bloggkategorier', 'wpsvse' ),
);
$args = array(
'labels' => $labels,
'public' => true,
'show_in_nav_menus' => true,
'show_ui' => true,
'show_tagcloud' => false,
'show_admin_column' => true,
'hierarchical' => true,
'rewrite' => array(
'slug' => 'blogg-kategori',
'with_front' => true,
'hierarchical' => true
),
'query_var' => true
);
register_taxonomy( 'blog_category', array('wpsvse_blog'), $args );
}
?>