Hi @shikarime,
If you don’t want to display “Category Archive”, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
.category #content .page-title {
display: none;
}
Or
Create a child theme (You can find the details on how to create child theme HERE), then copy the archive.php
from main theme to child theme, and edit the archive.php
.
Modify the following code:
if ( is_category() ) {
printf( __( 'Category Archives: %s', 'adventurous' ), '<span>' . single_cat_title( '', false ) . '</span>' );
}
Like this:
if ( is_category( 'sample-category-1' ) || is_category( 'sample-category-2' ) ) {
printf( '<span>' . single_cat_title( '', false ) . '</span>' );
}
elseif ( is_category() ) {
printf( __( 'Category Archives: %s', 'adventurous' ), '<span>' . single_cat_title( '', false ) . '</span>' );
}
Regards,
Mahesh