Plugin Directory

Changeset 2015979


Ignore:
Timestamp:
01/20/2019 10:25:41 PM (7 years ago)
Author:
themeblvd
Message:

1.1.6

Location:
portfolios
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • portfolios/trunk/readme.txt

    r1937694 r2015979  
    33Contributors: themeblvd
    44Tags: bundle, Theme Blvd, themeblvd, Jason Bobich, portfolios
    5 Stable Tag: 1.1.5
    6 Tested up to: 4.9
     5Stable Tag: 1.1.6
     6Tested up to: 5.0
    77
    88Adds a "Portfolio Item" custom post type with associated "Portfolio" and "Porfolio Tag" taxonomies.
     
    107107== Changelog ==
    108108
     109= 1.1.6 - 01/20/2019 =
     110* Allow portfolio taxonomies to be available through REST API and applied with Gutenberg.
     111
    109112= 1.1.5 - 09/07/2018 =
    110113* Allow portfolio items to be available through REST API and editable with Gutenberg.
  • portfolios/trunk/tb-portfolios.php

    r1937694 r2015979  
    33Plugin Name: Portfolios
    44Description: Extend the Post Grid system in your Theme Blvd theme to a Portfolio custom post type.
    5 Version: 1.1.5
     5Version: 1.1.6
    66Author: Theme Blvd
    77Author URI: http://themeblvd.com
     
    99*/
    1010
    11 define( 'TB_PORTFOLIOS_PLUGIN_VERSION', '1.1.5' );
     11define( 'TB_PORTFOLIOS_PLUGIN_VERSION', '1.1.6' );
    1212define( 'TB_PORTFOLIOS_PLUGIN_DIR', dirname( __FILE__ ) );
    1313define( 'TB_PORTFOLIOS_PLUGIN_URI', plugins_url( '' , __FILE__ ) );
     
    138138            'query_var'         => true,
    139139            'rewrite'           => array( 'slug' => 'items' ),
     140            'show_in_rest'      => true,
    140141        ));
    141142
     
    162163            'query_var'         => true,
    163164            'rewrite'           => array( 'slug' => 'item-tag' ),
     165            'show_in_rest'      => true,
    164166        ));
    165167
Note: See TracChangeset for help on using the changeset viewer.