My solution to this: [apcode language="php"] <div id="post-<?php the_ID(); ?>" class="ap-single-vote" apid="<?php the_ID();?>" ap="question"><?php...
View QuestionKeith Ho
95 Reputation
Answers
My solution is adding this: [apcode language="php"] <?php global $metas; if ( ap_post_have_terms( $question_id ) ) { $metas['categories'] = ap_question_categories_html(array(...
View QuestionMy solution to this: [apcode language="php"] <?php $user_args = array( 'ap_query' => true, 'role__not_in' => [ 'administrator',...
View QuestionYou may try to insert this in your child theme function.php. However, its input type will be replaced by textarea. [apcode language="php"] function my_custom_title_field( $form ) { $form['fields']['post_content']...
View Question