BW WordPress Theme Version 4.1

Hi, BW WordPress theme just update the new version to 4.1. The update at Saturday (Dec 16, 2013) already aproved by WordPress theme reviewer (see http://themes.trac.wordpress.org/ticket/15284) and now the self-hosted WordPress users can download it free from the WordPress theme directory. In this new version we have not much changes. It just fixed some style, …

BW WordPress Theme Version 3.1

BW WordPress Theme update version 3.1 on Friday, Sepetember 27, 2013. In this update it added new some features like support HTML5, two BW widgets, new color scheme. The first BW widget is Recent Posts by Format Widget. This widget shown any recent post which formatted with Aside, Image, Link, Quote, Status and Video format. …

BW WordPress Theme: Completely Removing BW Color Schemes Styles

After create a child theme, now we can remove all of BW color schemes styles with add some code into our child theme's functions.php file. <?php function my_theme_scripts() { $colorscheme = get_theme_mod( 'bw_color_scheme' ); if ( $colorscheme != 'default' ) wp_dequeue_style( 'bw-color-scheme', get_template_directory_uri() . '/schemes/' . $colorscheme . '.css' , array(), null ); } add_action( …