Home > Advanced-Find

Advanced-Find

Advanced-Find is a project mainly written in PHP, it's free.

Allows you to search and sort many different archives/articles in Wolf CMS

h3. Advanced Find plugin

This plugin enables you to sort/merge multiple pages trees in Wolf CMS.

Article considering setup and usage of this plugin can be found at Project 79

h3. Installation

download adv-find plugin and unpack it in "wolf/plugins/" folder

go to administration->plugins and enable Advanced Find plugin

h3. Usage

Example of your backend Pages:

Home Page |- Category 1 | |- Article 1 | |- Article 2 | |- Article 3 |- Category 2 |- Article 4 |- Article 5

Followed by this line of code to sort them out.

bc. <?php $articles = adv_find(array('/category-1/','/category-2/','/MORE CATEGORIES/'),array('order'=>'published_on DESC', 'limit'=>5)); ?> <?php foreach ($articles as $article): ?>

link(); ?>

content(), '')) === false ) { // "more" trigger NOT found, so just echo content echo $article->content(); } else { // "more" trigger IS found, so echo only teaser and add link to whole article echo substr($article->content(), 0, $more_pos); echo '

'. $article->link('Read more . . .') .'

'; } ?>

<?php endforeach; ?>

NOTE: The limit of children cannot be less then 2!

Previous:MooSocket