Created
April 4, 2014 03:16
-
-
Save nishad/9967374 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $years = array(); $months = array(); ?> | |
<?php if(has_posts()): while(posts()): ?> | |
<?php $y = date('Y', article_time()); $m = date('F', article_time()); ?> | |
<?php if( ! in_array($y, $years)): $years[] = $y; ?> | |
<h1><?php echo $y; ?></h1> | |
<?php endif; ?> | |
<?php if( ! in_array($m, $months)): $months[] = $m; ?> | |
<h2><?php echo $m; ?></h2> | |
<?php endif; ?> | |
<p><?php echo article_title(); ?></p> | |
<?php endwhile; endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment