ap_update_votes_count( integer $post_id )
Description #
Update qameta votes count
Parameters #
- $post_idinteger (Required) Post ID.
Source #
File: includes/qameta.php
function ap_update_votes_count( $post_id ) { $count = ap_count_post_votes_by( 'post_id', $post_id ); ap_insert_qameta( $post_id, $count ); return $count; }
Expand full source code Collapse full source code View on GitHub: includes/qameta.php:253
Add your comment