If you want to add the different header for each category then use the following code in your index.php where “get_header()” method is called.
<?php if (is_category(‘new_category’)) {
get_header(‘ new_category ‘);
} else {
get_header();
} ?>
Create the Header-new_category.php file and put your header code in that file as per requirement.
For sidebar use this code:
<?php if (is_category(‘New_category’)) {
get_sidebar(‘new_category’);
} else {
get_sidebar();
} ?>
Create the sidebar-new_category.php file and put your sidebar code in that file as per requirement.
For Footer use this code:
<?php if (is_category(‘New_category’)) {
get_footer(‘new_category’);
} else {
get_footer();
} ?>
Create the footer-new_category.php file and put your footer code in that file as per requirement.