wordpress is tag function

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
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?>