法国日期格式

时间:2010-05-05 21:00:28

标签: php

我是PHP&的新手WordPress的。我想知道如何使这个codde呈现法语日期格式(例如5 Fev),当你在法国方面但用英语格式(例如1月5日)时

这是我的代码:

<?php
if (strtolower(ICL_LANGUAGE_CODE) == 'en') {$sidePosts = get_posts('cat=3,4,5,19&posts_per_page=5&order=DESC&orderby=date');}
if (strtolower(ICL_LANGUAGE_CODE) == 'fr') {$sidePosts = get_posts('cat=9,10,11,17&posts_per_page=5&order=DESC&orderby=date');}
foreach($sidePosts as $sidePosts) {
    $array = (array) $sidePosts;
    print("<li>");
    print("<span class='date'>".get_the_time('M j', $array[ID])."</span>");
    print("<a href='".get_permalink($array[ID])."' title='".$array[post_title]."'>".$array[post_title]."</a>");
    print("</li>");
}
?>

1 个答案:

答案 0 :(得分:0)

您可以替换它:

print("<span class='date'>".get_the_time('M j', $array[ID])."</span>");

用这个:

if (strtolower(ICL_LANGUAGE_CODE) == 'en') 
{
    print("<span class='date'>".get_the_time('M j', $array[ID])."</span>");

}
else {
    print("<span class='date'>".get_the_time('j M', $array[ID])."</span>");
}

从长远来看,您可能希望使用插件来执行此操作,因为在更新wordpress后您可能不得不重做此更改。

您可能还想阅读此内容:http://codex.wordpress.org/Formatting_Date_and_Timehttp://gettingeek.com/internationalize-localize-a-wordpress-theme-guide-for-dummies-part-1-introduction-70.html