Internationalize Posted On
-
Hi,
I’m working on a update of my theme and want to make the Posted On internationalized, so translators are able to change position of date.
My old code was:
<?php _e('Posted on ', 'themename'); ?><a href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a>
Works fine but translators are not able to change position of date.
So, this is my new code:<?php printf( __( 'Posted on %s', 'themename' ), '<a href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a>' ); ?>
But date is not displayed anymore, what am I doing wrong?
Guido
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Internationalize Posted On’ is closed to new replies.