ap_unset_featured_question( integer $post_id )
Description #
Unset a question as a featured.
Parameters #
- $post_idinteger (Required) Question ID.
Source #
File: includes/qameta.php
function ap_unset_featured_question( $post_id ) { return ap_insert_qameta( $post_id, array( 'featured' => 0 ) ); }
Expand full source code Collapse full source code View on GitHub: includes/qameta.php:518
Add your comment