Home / Admin / Auto Vote 5 sao cho bài viết mới
Duplicate Snippet

Embed Snippet on Your Site

Auto Vote 5 sao cho bài viết mới

Code Preview
php
<?php
function auto_vote_5_stars_on_publish($ID, $post) {
    if ($post->post_status === 'publish') {
        if (function_exists('kk_star_ratings_insert')) {
            kk_star_ratings_insert("5", $ID);
        }
    }
}
add_action('publish_post', 'auto_vote_5_stars_on_publish', 10, 2);

Comments

Add a Comment