if ((has_post_thumbnail() && $post->post_type == 'page')) {
$image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full");
$image_data = $image_data[0];
- echo ' style="background-image: url('.$image_data.');height:0;padding:0;padding-bottom:32%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 600px; "';
+ echo ' style="background-image: url('.$image_data.'?v=1.0);height:0;padding:0;padding-bottom:32%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 600px; "';
} else if (!is_page('member-detail')) {
- echo ' style="background-image: url('.get_template_directory_uri().'/assets/default.jpg);height:0;padding:0;padding-bottom:32%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 600px; "';
+ echo ' style="background-image: url('.get_template_directory_uri().'/assets/default.jpg?v=1.0);height:0;padding:0;padding-bottom:32%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 600px; "';
} else {
echo ' class="no-featured"';
}