Created
January 30, 2013 07:14
-
-
Save kostyakoz/4671377 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