/**
* Theme Name: Jobaway Child
* Description: This is a child theme of Jobaway, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/template_path">Template Path</a>
* Template: jobaway
* Version: 1.3
*/

/* Add body class for Event blog posts */
function add_event_post_body_class($classes) {

	// Sirf single blog post par
	if (is_single() && has_category('events')) { // events = category slug
		$classes[] = 'event-post';
	}

	return $classes;
}
add_filter('body_class', 'add_event_post_body_class');
