Plugin Directory

Changeset 3465076


Ignore:
Timestamp:
02/19/2026 12:17:18 PM (5 weeks ago)
Author:
DarkoG
Message:

Updating readme/assets from GitHub

File:
1 edited

Legend:

Unmodified
Added
Removed
  • celersearch/trunk/readme.txt

    r3457958 r3465076  
    55Tested up to: 6.9
    66Requires PHP: 8.1
    7 Stable tag: 1.2.0
     7Stable tag: 1.2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9393If configured, CelerSearch can fall back to native WordPress search to ensure your site always has working search functionality.
    9494
     95= Can I disable content splitting for large posts? =
     96
     97CelerSearch automatically splits long post content into smaller chunks so the entire content is searchable. Meilisearch deduplicates results so each post appears only once. To disable splitting, add this to your `wp-config.php`:
     98
     99`define( 'CELERSEARCH_SPLIT_POSTS', false );`
     100
     101You can also customize the chunk size (default 2000 characters):
     102
     103`define( 'CELERSEARCH_CONTENT_MAX_SIZE', 3000 );`
     104
     105After changing these settings, rebuild your indices from CelerSearch > Indices.
     106
    95107= How can I replace the default search results page? =
    96108
     
    110122
    111123== Changelog ==
     124
     125= 1.2.1 =
     126
     127* Fix post splitting / deduplication
    112128
    113129= 1.2.0 =
Note: See TracChangeset for help on using the changeset viewer.