Topic: Search blog's post content
use this snippet if you want search blog's post by content or title
- ';
foreach($pages as $page)
{ $content = strtolower(Pages::content($page['slug']));
$title = strtolower($page['title']);
if (strpos($title , $name) !== false OR strpos($content , $name) !== false) {
echo '
- '; echo '' .$page['title']. ''; echo ' '; $counter++; } } echo '
no matches found
'; } else { echo 'found ' .$counter. '
'; } } ?>