Support » Fixing WordPress » Localizing a theme, special tag

  • I am starting to localize my WordPress themes, and am using the localized version of Kubrick for 2.7 as a base. I understand most of what I need to do, using these two types of tags:

    <?php _e('Not Found', 'mydomain'); ?>
    
    <?php edit_post_link(__('Edit', 'mydomain'), '', ' | '); ?>

    What I’m having difficulty with are things this customized tag, which I use in all themes:

    <?php the_content("Continue reading " . get_the_title('', '', false)); ?>

    Is this correct?

    <?php the_content(__('"Continue reading " . get_the_title('', '', false)', 'mydomain')); ?>

    I would appreciate someone pointing me in the right direction. I am getting better at this but not good enough yet to figure this one out.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Localizing a theme, special tag’ is closed to new replies.