hi i found this code but still not work if u can help
for archive.php
if (is_category('1')) {
include('full-page.php');
} else {
// the rest of the code
}
or in the single.php
foreach((get_the_category()) as $category) {
if ($category->cat_ID == 1) { $istheone = true; }
}
if ($istheone) {
include('full-page.php');
} else {
// the rest of the code
}