TODO: To change the header's content go to Dr.Explain menu Options : Project Settings : HTML (CHM) Export : Setup HTML Template and Layout
×
Menu
Index

Lấy dữ liệu theo ngày tháng

//Posts for category 13, for the current month on the main page
query_posts( $query_string . '&cat=13&monthnum=' . date( 'n', current_time( 'timestamp' ) ) );
 
- Lấy dữ liệu posts đăng ở trong tháng này.
$current_year = date('Y');
$current_month = date('m');
 
query_posts( "cat=22&year=$current_year&monthnum=$current_month&order=ASC" );
 
- Hiển thị bài viết đã đăng cách đây một năm.
<?php
$current_day = date('j');
$last_year = date('Y')-1;
query_posts('day='.$current_day.'&year='.$last_year);
if (have_posts()):
    while (have_posts()) : the_post();
       the_title();
       the_excerpt();
    endwhile;
endif;
?>
 
 
Made with help of Dr.Explain

Unregistered version