I get this error when I enter data in my form
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in
\functions.php on line 77
return '<span class="vwbx">Views</span>''<span class="vwbx">$count.</span>';
==== Whole function===
function getPostViews($postID){
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
return "0 View";
}
return $count. '<span class="vwbx">Views</span>''<span class="vwbx">views</span>';
}