- Author was Featured
- Bought between 10 and 49 items
- Exclusive Author
- Has been a member for 6-7 years
- Interviewed on the Envato Notes blog
- Item was Featured
- Microlancer Beta Tester
- Referred between 200 and 499 users
As you know ThemeCheck plugin gives error/warning if you are not using post tags anywhere on your theme then your theme will be rejected. This is one of those new conditions for which many themes are being rejected.
But I have seen quite a few themes lately which doesn’t have post tags anywhere on the blog pages.
Does this mean the themes have been approved without considering the lack of use of tags or does it mean the themes’ authors simply haven’t added any tags in their themes due to which no tags are found on those themes?
Edit: I need to know this because I am designing a new theme with minimalist approach and displaying all the post related info doesn’t help achieve minimalism.
- Sold between 250 000 and 1 000 000 dollars
- Item was Featured
- Author was Featured
- Bought between 100 and 499 items
- Has been a member for 2-3 years
- Exclusive Author
Just add the the ability to enable/diasble post info parts in your theme options and disable them in your live preview. This will pass theme check and leave users an option to enable them, if they wish.
I left tags out of my themes and never got an error/warning for that, maybe it has to do with the way I call them.
<?php printf( get_the_term_list( $post->ID, 'category', '<span class="terms"><span class="prep">' . __( 'Posted in ', 'prefix' ) . '</span>', ', ', '</span>' ) ); ?>
The following function will only print out a post tag if there is one, making it collapsible. You dont need to add another useless theme option. Develop smart people!
<?php printf( get_the_term_list( $post->ID, 'post_tag', '<span class="tags"><span class="prep">' . __( 'Tagged as ', 'prefix' ) . '</span>', ', ', '</span>' ) ); ?>
- Sold between 250 000 and 1 000 000 dollars
- Item was Featured
- Author was Featured
- Bought between 100 and 499 items
- Has been a member for 2-3 years
- Exclusive Author
It is not always useless, for example, if I just want to display tag cloud widget without displaying tags in post meta info.
A theme I’m working on displays no post tags and passes theme check 100%.
i’m agree with @MNKY , you can set preview tags in theme options – on / off
