Skip to content

Commit

Permalink
Merge pull request #37 from thenewinquiry/1.2.12
Browse files Browse the repository at this point in the history
Added tags to blogs
  • Loading branch information
misfist authored Oct 4, 2017
2 parents 49899a8 + f91a4da commit a34e5c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion includes/class-tni-core-cpt.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function register_blogs() {
'description' => __( 'Post type for blogs', 'tni-core' ),
'labels' => apply_filters( 'register_blogs_labels', $labels ),
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'custom-fields', ),
'taxonomies' => array( 'blog-types' ),
'taxonomies' => array( 'blog-types', 'post_tag' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: misfist
Tags: custom
Requires at least: 4.7
Tested up to: 4.8
Version: 1.2.11
Version: 1.2.12
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working.

== Changelog ==

= 1.2.12 October 3, 2017 =
* Added tags (`post_tag`) taxonomy to blogs post type @link https://github.com/thenewinquiry/tni-theme/issues/91

= 1.2.11 October 3, 2017 =
* #92 Added `audio_url` field to blogs post type. @link https://github.com/thenewinquiry/tni-theme/issues/92

Expand Down
4 changes: 2 additions & 2 deletions tni-core-functionality.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Text Domain: tni-core
* Domain Path: /languages
*
* Version: 1.2.11
* Version: 1.2.12
*
* @package Tni_Core_Functionality
*/
Expand Down Expand Up @@ -52,7 +52,7 @@
* @return object Tni_Core
*/
function Tni_Core() {
$instance = Tni_Core::instance( __FILE__, 'l.2.11' );
$instance = Tni_Core::instance( __FILE__, 'l.2.12' );

return $instance;
}
Expand Down

0 comments on commit a34e5c8

Please sign in to comment.