How wp_ajax_nopriv since WordPress 3.1
Site you referred to is likely being updated in automated fashion. The reason it wrongfully claims that action is deprecated is because: you are looking at page for wp_ajax_nopriv_{$_POST[action]} while in recent WP versions actual code is wp_ajax_nopriv_{$_REQUEST[action]} (also documented on that site). So action is not deprecated, its functionality is not changed (only the … Read more