Do I need to include a textdomain if my theme doesn’t support translation?

If your code, be it a theme or a plugin, does not support translation, then don’t use the translation functions. And if you don’t use these functions, you cannot use a text domain. 🙂 There is a very common error that looks like this: echo __( ‘Portfolio’ ); Portfolio is not part of WordPress’ core … Read more

what’s meaning of it when submit a theme?

OK, I figured it out. It took a bit of digging and many bad suggestions. The solution is actually quite simple. Just replace this in your theme files: Where you have this: <div class=”comments”> <?php comments_template(); ?> </div> Replace it with this: <div class=”comments”> <?php if ( comments_open() ) : ?><br /><p><br /><?php comments_template(); ?><br … Read more