Skip to content

v1.3.3

Choose a tag to compare

@ve3 ve3 released this 05 Mar 05:40
· 12 commits to master since this release
a205594

Fix

v1.3.2

CSS not loaded?

If you create child theme and previously do something like this.

wp_dequeue_style('bootstrap-style');
wp_enqueue_style('bootstrap-3', trailingslashit(get_template_directory_uri()) . 'css/bootstrap.min.css');
wp_enqueue_style('my-theme-main-style', trailingslashit(get_stylesheet_directory_uri()) . 'assets/css/main.min.css', ['bootstrap-3']);

You are doing it wrong and it will cause your theme breaks!
Replace with this.

// the commented out code below can be remove them entirely.
//wp_dequeue_style('bootstrap-style');
//wp_enqueue_style('bootstrap-3', trailingslashit(get_template_directory_uri()) . 'css/bootstrap.min.css');
wp_enqueue_style('my-theme-main-style', trailingslashit(get_stylesheet_directory_uri()) . 'assets/css/main.min.css', ['bootstrap-style']);

v1.3.1

Fix

  • Fix prevent call the_widget() while certain widget is not registered.

v1.3.0

Update

  • Remove Internet Explorer supported.