Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created March 5, 2017 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahularyan/3b541fa35dd59b89ac41761fb0842629 to your computer and use it in GitHub Desktop.
Save rahularyan/3b541fa35dd59b89ac41761fb0842629 to your computer and use it in GitHub Desktop.
AnsPress - Show star icon in featured question
<?php
/**
* Template for question list item.
*
* @link https://anspress.io
* @since 0.1
* @license GPL 2+
* @package AnsPress
*/
if ( ! ap_user_can_view_post( get_the_ID() ) ) {
return;
}
$clearfix_class = array( 'ap-questions-item clearfix' );
?>
<div id="question-<?php the_ID(); ?>" <?php post_class( $clearfix_class ); ?>>
<?php if ( ap_is_featured_question( ) ) : ?>
<i class="ap-featured-mark apicon-star"></i>
<?php endif; ?>
<div class="ap-questions-inner">
<div class="ap-avatar ap-pull-left">
<a href="<?php ap_profile_link(); ?>"<?php ap_hover_card_attr(); ?>>
<?php ap_author_avatar( ap_opt( 'avatar_size_list' ) ); ?>
</a>
</div>
<div class="ap-list-counts">
<!-- Votes count -->
<?php if ( ! ap_opt( 'disable_voting_on_question' ) ) : ?>
<span class="ap-questions-count ap-questions-vcount">
<span><?php ap_votes_net(); ?></span>
<?php _e( 'Votes', 'anspress-question-answer' ); ?>
</span>
<?php endif; ?>
<!-- Answer Count -->
<a class="ap-questions-count ap-questions-acount" href="<?php echo ap_answers_link(); ?>">
<span><?php ap_answers_count(); ?></span>
<?php _e( 'Ans', 'anspress-question-answer' ); ?>
</a>
</div>
<div class="ap-questions-summery">
<span class="ap-questions-title" itemprop="title">
<?php ap_question_status(); ?>
<a class="ap-questions-hyperlink" itemprop="url" href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</span>
<div class="ap-display-question-meta">
<?php echo ap_question_metas() ?>
</div>
</div>
</div>
</div><!-- list item -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment