Skip to main contentSkip to footer

More bug reports and non-working Relevanssi installations, hence a new bug fix release. Heavily recommended; I’m also terribly sorry of my flaky quality control.

Your account

Not logged in. Log in to see your license details.

Search

Popular Resources

Indexing with a cron job

…directory. If they’re not, adjust the path to wp-blog-header.php so that it points to the right place. Now to start indexing, have the cron job visit the relevanssi-start-indexing.php – this will start the indexing and will index 100 posts. Then have the cron job visit relevanssi-continue-indexing.php as many times as……this happen in practice, you need two files. First, create a file relevanssi-start-indexing.php with this content: <?php require ‘wp-blog-header.php’; relevanssi_build_index( false, false, 100 ); and then a file relevanssi-continue-indexing.php with this content: <?php require ‘wp-blog-header.php’; relevanssi_build_index( true, false, 100 ); This assumes the files are in your WP installation root……your posts and server. Removing automatic indexing If you index with a cron job, you may want to disable automatic indexing. You can do it by adding this to your site: remove_action( ‘wp_insert_post’, ‘relevanssi_insert_edit’, 99 ); remove_action( ‘wp_after_insert_post’, ‘relevanssi_insert_edit’, 99 ); // Relevanssi 4.17 / Premium 2.19 onwards. This was…

OceanWP

…$post->blog_id ); } ?> <article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>> <div class=”search-entry-inner clr”> <?php // Featured Image. get_template_part( ‘partials/search/thumbnail’ ); ?> <div class=”search-entry-content clr”> <?php // Title. get_template_part( ‘partials/search/header’ ); // Content. get_template_part( ‘partials/search/content’ ); // Read more button. get_template_part( ‘partials/search/readmore’ ); ?> </div><!– .search-entry-content –> </div><!– .search-entry-inner –>

Indexing custom post statuses
If you’re using custom post statuses, Relevanssi requires some tinkering. By default, Relevanssi only handles posts that are of status…

Related Posts:

Currently there are no related posts available.

Comment Section:

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed