| @@ -347,8 +347,11 @@ | ||
| 347 | 347 | |
| 348 | 348 | <!-- Content Types Selection --> |
| 349 | 349 | <div class="form-row"> |
| 350 | 350 | <label><?php _e( 'Content Types', 'wpforo' ); ?></label> |
| 351 | + <p class="description"> | |
| 352 | + <?php _e( 'Not all posts may be indexed. Content generated dynamically by shortcodes or page builders may not contain indexable text. Posts with very short content (less than 10 characters after stripping HTML and shortcodes) are also skipped. The indexed count may differ from the total if such content exists.', 'wpforo' ); ?> | |
| 353 | + </p> | |
| 351 | 354 | <div class="wpforo-ai-wp-types-grid wpforo-ai-wp-types-compact"> |
| 352 | 355 | <?php foreach ( $wp_post_types as $type ) : ?> |
| 353 | 356 | <label class="wpforo-ai-wp-type-item"> |
| 354 | 357 | <input type="checkbox" |
| @@ -354,10 +357,9 @@ | ||
| 354 | 357 | <input type="checkbox" |
| 355 | 358 | name="wp_post_types[]" |
| 356 | 359 | value="<?php echo esc_attr( $type['name'] ); ?>" |
| 357 | 360 | data-count="<?php echo esc_attr( $type['count'] ); ?>" |
| 358 | - class="wpforo-ai-wp-type-checkbox" | |
| 359 | - checked> | |
| 361 | + class="wpforo-ai-wp-type-checkbox"> | |
| 360 | 362 | <span class="type-label"><?php echo esc_html( $type['label'] ); ?></span> |
| 361 | 363 | <span class="type-count">(<?php echo number_format( $type['count'] ); ?>)</span> |
| 362 | 364 | <?php |
| 363 | 365 | $type_key = 'wp_' . $type['name']; |