56 | Twenty Eleven – New Page Template with Sidebar Correction

If you are creating a new page template for a child theme of Twenty Eleven, with a sidebar, you need to correct the body_class output to remove the css class .singular.

Add this to functions.php of your child theme:

add_filter('body_class', 'adjust_body_class', 20, 2);
function adjust_body_class($wp_classes, $extra_classes) { 

if( is_page_template('new-sidebar-page-template-file-name.php') ) :
// Filter the body classes     

	  foreach($wp_classes as $key => $value) {
	  if ($value == 'singular') unset($wp_classes[$key]);
	  }

endif;
// Add the extra classes back untouched
return array_merge($wp_classes, (array) $extra_classes );
}

If you created more than one new page template with sidebar, change this one line in the code to something like:

if( is_page_template('new-sidebar-page-template-file-name.php') || is_page_template('another-sidebar-page-template.php') || is_page_template('further-sidebar-page-template.php') ) :

The above codes are similar to what I used in this recent article.

Posted in Tips & Tricks, TwentyEleven | 1 Response

55 | WordPress Post Thumbnails with Caption

This is a tidying up of a WordPress support forum topic – nothing really that I came up with myself. The question is how to post the caption with a post thumbnail, aka featured image, in an ordered way. This … capture it all … »

Posted in Wordpress | Tagged , , , | Leave a comment

54 | Mini SEO – a Meta Description Field for Posts and Pages

Modern search engines do not rely on meta descriptions and meta keywords anymore for your ranking. However, they do preferably show a proper added meta description instead of the first few words of the post or page. If you can … Check the whole post »

Posted in Tips & Tricks, Wordpress | Tagged , , , , | 1 Response

53 | My Personal Transformation to a Raw Food Lifestyle

On the last weekend in November, I attended a workshop with Genesis Sunfire in Somerset UK. The workshop was advertised as: ‘Moving From Sedation To Living On Soul Vibration – Rites Of Passage’. From the content of Genesis’ website, I … Check the whole post »

Posted in Health, Personal Development | Tagged , , , , , , , , , | Leave a comment