wordpress is tag function

Solutions on MaxInterview for wordpress is tag function by the best coders in the world

showing results for - "wordpress is tag function"
Angela
05 Nov 2020
1<?php
2if ( is_category() ) {
3	echo 'Category Archive';
4} elseif ( is_tag() ) {
5	echo 'Tag Archive';
6}
7?>