WP-ajax-like-button
WP-ajax-like-button copied to clipboard
like button for Wordpress that can be used on posts, pages, custom post types, everywhere you have a metabox to store the likes in
error : like-metabox.php line 62 fixed by replace function "save_like_metabox" with below function ``` function save_like_metabox_NEW($post_id) { if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) return; if (array_key_exists('_likes_count', $_POST) && wp_verify_nonce($_POST['wp_nonce'], __FILE__))...
Hi, I'd like to thank you for your hard work and distributing it for free. It helped me put the like and dislike button in my Theme. I was wondering...