我目前正在尝试本地化我的主题,并且仍然对何时使用 e,_ 或打印f感到困惑。
例如,正确的方法是什么 -
<p class="article-author"><?php _e( 'article written by', 'mytheme' ); ?><span><?php the_author_link(); ?></span></p>
或者用这个 -
<p><?php _e( 'posted on', 'mytheme' ); ?> <span><?php the_time( 'F jS Y' ); ?></span> <?php _e( 'in', 'mytheme' ); ?> <span><?php the_category( ' & ' ); ?></span> <?php _e( 'with', 'mytheme' ); ?> <span><a href="#comments"><?php $commentscount = get_comments_number(); echo $commentscount; ?> <?php _e( 'Comments', 'mytheme' ); ?></a></span></p>