$guide) { if (!empty($guide['published']) && $guide['published'] === false) { continue; } if (($guide['category'] ?? '') === $categorySlug) { $categoryName = $guide['category_name'] ?? ucfirst($categorySlug) . " Guides"; $guides[] = [ 'name' => $guide['name'] ?? '', 'url' => $guide['url'] ?? '', 'description' => $guide['description'] ?? '', 'published_at' => $guide['published_at'] ?? '2000-01-01' ]; } } } usort($guides, function ($a, $b) { return strcmp($b['published_at'], $a['published_at']); }); $pageTitle = $categoryName; $pageDescription = "Browse practical guides for " . strtolower($categoryName) . "."; $seoCanonical = "https://toolsmeet.com/guides/" . $categorySlug . "/"; include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/header.html"; ?>

Step-by-step practical guides for real-world use.

No guides available yet.