ap_is_featured_question( boolean|integer $question = null )
Description #
Check if current post is marked as featured
Parameters #
- $questionboolean | integer (Optional) Question ID to check. Default value: null
Source #
File: includes/qaquery.php
function ap_is_featured_question( $question = null ) { $question = ap_get_post( $question ); return (bool) $question->featured; }
Expand full source code Collapse full source code View on GitHub: includes/qaquery.php:608
Add your comment