Есть кнопка лайков при клике которой увеличивается число на 1.
Как сделать чтобы по умолчанию стояла цифра 0?
php
function getPostLikeLink($post_id){
$vote_count = get_post_meta($post_id, "votes_count", true);
$output = '';
if(hasAlreadyVoted($post_id)){
$output .= '<div class="svg_bottom_ico"><div class="like_ico is-active"></div></div>';
$output .= '<span class="likecount"> '.$vote_count.'</span>';
}else{
$output .= '<div class="svg_bottom_ico"><div class="like_ico noactive_svg" data-post_id="'.$post_id.'"></div></div>';
$output .= '<span class="likecount"> '.$vote_count.'</span>';
}
return $output;
}
jquery
jQuery(document).ready(function($){
$(".noactive_svg").click(function(event){
heart = $(this);
post_id = heart.data("post_id");
$.ajax({
type: "post",
url: ajax_var.url,
data: "action=post-like&nonce="+ajax_var.nonce+"&post_like=&post_id="+post_id,
success: function(count){
if(count != "already"){
heart.addClass("is-active");
heart.parent().next(".likecount").text(count);
}
}
});
return false;
});
});
Спасибо за помощь!