ap_update_flags_count( integer $post_id )
Description #
Increment flags count.
Parameters #
- $post_idinteger (Required) Post ID.
Source #
File: includes/qameta.php
function ap_update_flags_count( $post_id ) { $count = ap_count_post_flags( $post_id ); ap_insert_qameta( $post_id, array( 'flags' => $count ) ); return $count; }
Expand full source code Collapse full source code View on GitHub: includes/qameta.php:417
Add your comment