Simply add a new data, if need to reset question count simply add new question and it will update counts of posts.
Thanks for the snippet. I modified your code: // Add specific CSS class to body tag based on Anspress page type add_filter( 'body_class', 'body_question' ); function body_question( $classes ) { if(is_anspress()){ $classes[] = 'ap-page-' . ap_current_page(); } return $classes; }
Theme style will never change.. Only bug will be fixed. If we add new features to AnsPress then new CSS for that feature will be added. Always use child theme to override parent theme styles, this way you can easily update without loosing any of your works.
AskBug is not tested with beta yet. Alignment looks fine to me, card position is set to center of avatar. Please let me know why you think its not aligned.
Fixed it. Update AnsPress, tags and category to latest commit.
This need to be done manually. Download from GitHub and then upload it to WordPress. In case if you see 2 AnsPress plugins in your WP site then remove old one.
You can use current master archive from github. This has been tested and safe to use.
I don’t think there is anything wrong in you code. BTW you do not need post_type args as question_query will fetch only question cpt.