Hi Long,
Yes, I had added add_to_wpseo_analysis => 1
to the text
and wysiswyg
filed groups but the insertion of other field types between them somehow stops the text count for Yoast. Not using AIO, but rather have added these fields in a custom plugin.
array(
'id' => $prefix . 'sections',
'type' => 'group',
'clone' => true,
'sort_clone' => true,
'collapsible' => true,
'fields' => array(
array(
'id' => $prefix . 'section_type',
'name' => esc_html__( 'Section Type', 'site' ),
'type' => 'select',
'options' => array(
'wysiwyg' => 'WYSIWYG Editor',
'image_grid' => 'Image Grid',
'quote' => 'Quote Section',
'form_id' => 'Gravity Forms ID'
)
),
array(
'id' => $prefix . 'wysiwyg_section',
'name' => esc_html__( 'WYSIWYG Editor', 'site' ),
'type' => 'wysiwyg',
'visible' => array( $prefix . 'section_type', 'wysiwyg' ),
'add_to_wpseo_analysis' => true,
),
.... ETC.