یک سری کد هست که گاهی اوقات برای نمایش تاریخ و ساعت به کار میره و از توابع خاصی استفاده میکنه مثلاً کد ها به این صورت شروع میشه :
<?php
$now = gmdate("Y-m-d H:i:s",time());
$lastmonth = gmdate("Y-m-d H:i:s",gmmktime(date("H"), date("i"), date("s"), date("m")-1,date("d"),date("Y")));
$popularposts = "SELECT ID, post_title, post_date, comment_count, COUNT($wpdb->comments.comment_post_ID) AS 'popular' FROM $wpdb->posts, $wpdb->comments WHERE comment_approved = '1' AND $wpdb->posts.ID=$wpdb->comments.comment_post_ID AND post_status = 'publish' AND post_date < '$now' AND post_date > '$lastmonth' AND comment_status = 'open' GROUP BY $wpdb->comments.comment_post_ID ORDER BY popular DESC LIMIT 11";
$posts = $wpdb->get_results($popularposts);
$popular = '';
if($posts){
foreach($posts as $post){
$post_title = stripslashes($post->post_title);
$post_date = stripslashes($post->post_date);
$comments = stripslashes($post->comment_count);
$guid = get_permalink($post->ID);
$popular .= '<li><span class="title"><a href="'.$guid.'" title="'.$post_title.'">'.$post_title.'</a></span><br/>
<span class="meta"> With <a href="'.$guid.'#commenting" title=" Read the comments on '.$post_title.'">'.$comments.' comments</a> since '.$post_date.'</span></li>';
}
}echo $popular;
?>
این یک سری کده که برای ما پست های Popular رو نمایش میده به همراه تعداد پاسخ ها و تاریخ و ساعت مربوطه...
آیا امکانش هست تاریخ ، جلالی نمایش پیدا کنه؟ چون در حالی که افزونه ی جلالی ساز(!) داره اجرا میشه ، خروجی این کد ها میلادیه و جلالی نیست.