Wordpress Многоязычная дата - PullRequest
0 голосов
/ 25 мая 2010

Я пытаюсь настроить отображение даты по-французски, например, "2 мая" вместо "2 мая"

вот мой код: '

    <?php // Get today's date in the right format
    //$todaysDate = date('M d');
    $todaysDate = date('m/d/Y H:i:s');
    ?>
    <?php query_posts('showposts=5&category_name=events&meta_key=Date&meta_compare=>=&meta_value='.$todaysDate.'&orderby=meta_value=order=ASC'); ?>


    <?php 
        if (have_posts()) : while (have_posts()) : the_post();
        $eventMeta = get_post_meta($post->ID, 'Date', true);
        $eventDate = strtotime($eventMeta);
        $displayDate = date ('M d', $eventDate);?>
    <ul>
    <li>
    <span class="date"><?php echo $displayDate ; ?></span>
        <span><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></span>
    </li>
<?php endwhile; else: ?>
<li><?php if ( (strtolower(ICL_LANGUAGE_CODE) == 'en') ) {echo("Sorry, no upcoming events for this month!");} ?>
<?php if ( (strtolower(ICL_LANGUAGE_CODE) == 'fr')) echo("D&eacute;sol&eacute;, aucun &eacute;v&eacute;nement &agrave; venir pour ce mois!") ?></li></ul>

<?php endif; ?>

Как мне сделать так, чтобы он переключал формат в зависимости от того, на каком языке вы говорите.Для просмотра сайта нажмите здесь

1 Ответ

0 голосов
/ 26 мая 2010
if(WPLANG == 'fr_FR'){
  //It's French
} else {
  // It's English
}
...