selective refresh for widgets.

This commit is contained in:
James Koster 2016-08-03 10:03:48 +01:00
parent 67be96cf6b
commit 4fa21f5b33
2 changed files with 4 additions and 1 deletions

View file

@ -2,7 +2,7 @@
### *2016.xx.xx* - 2.1.0
* **New** - Lots of SEO enhancements. Kudos [@opportus](https://github.com/opportus).
* **New** - Selective refresh on site title, tag line and logo.
* **New** - Selective refresh on site title, tag line, logo and widgets.
* **Fix** - Product thumbnail size on cart page.
* **Dev** - Restructured scss; removed components/typography and added main styles to `sass/base/_base.scss`. Layout styles then added to `sass/base/_layout.scss`.

View file

@ -119,6 +119,9 @@ if ( ! class_exists( 'Storefront' ) ) :
// Declare support for title theme feature.
add_theme_support( 'title-tag' );
// Declare support for selective refreshing of widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
}
/**