PluginProbe
wpForo Forum / 3.2.1
wpForo Forum v3.2.1
3.2.1 3.2.0 3.1.7 3.1.6 3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 All 141 releases
← All changes | admin/pages/tabs/ai-features-tab-wp-indexing.php +4 -2 3.0.7 → 3.2.1 View file →
@@ -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'];