GuidepluginHelper::build_index()

Definition

With this function you can renew the index for single or all posts.

Parameters

GuidepluginHelper::build_index($posts);
  • $posts (array) Post ID’s die du indexieren lassen möchtest. Falls dieser Wert leer ist oder nicht vorhanden, werden alle Posts reindexiert.

Example

The example shows you how to index the posts with the ID’s 45, 46 and 47.

<?php 
$posts = array(45, 46, 47);
GuidepluginHelper::build_index($posts);

The example shows you how to have all posts indexed.

<?php 
GuidepluginHelper::build_index();