<?php
// let's generate info appropriate to the page being displayed
if (is_home()) {
// we're on the home page, so let's show a list of all top-level categories
echo "anasayfada gorunmesini istediginiz kod";
}
} else {
// catch-all for everything else (archives, searches, 404s, etc)
echo "her sayfada gorunmesini istediginiz kod";
} // Bu kadar !
?>