AP_Update_Helper::subscribers( integer $post_id )
Description #
Update subscribers count and delete post meta.
Parameters #
- $post_idinteger (Required) Post ID.
Source #
File: admin/update.php
public function subscribers( $post_id ) { $count = get_post_meta( $post_id, '_ap_subscriber', true ); ap_update_subscribers_count( $post_id, $count ); delete_post_meta( $post_id, '_ap_subscriber' ); }
Expand full source code Collapse full source code View on GitHub: admin/update.php:268
Add your comment