Showing AnsPress Input Field instead title!
Hello,
I change the title length by using this code:
1 2 3 4 5 6 7 8 | function my_custom_title_field( $form ) { $form [ 'fields' ][ 'post_title' ] = array ( 'max_length' => 600, ); return $form ; } add_filter( 'ap_question_form_fields' , 'my_custom_title_field' ); |
But now the title is changed to ‘AnsPress Input Field.’
Ella Helga Answered question