Example #1
0
    function post_recent($post)
    {
        ?>
<div class="post" id="post-<?php 
        the_ID();
        ?>
">
	<?php 
        if (GZ::display_comments()) {
            ?>
	<div class="comment-count">
		<?php 
            comments_popup_link(__('0', 'guangzhou'), __('1', 'guangzhou'), __('%', 'guangzhou'));
            ?>
	</div>
	<?php 
        }
        ?>
	
	<h3><a href="<?php 
        the_permalink();
        ?>
" rel="bookmark" title="<?php 
        _e('Read the full story', 'guangzhou');
        ?>
"><?php 
        the_title();
        ?>
</a></h3>

	<div class="meta">
		<?php 
        the_time(get_option('date_format'));
        ?>
	</div>

	<div class="entry">
		<?php 
        the_excerpt(__('Read more here&hellip;', 'guangzhou'));
        ?>
		
		<p class="more-link"><a href="<?php 
        the_permalink();
        ?>
"><?php 
        _e('Read more here&hellip;', 'guangzhou');
        ?>
</a></p>
	</div>
</div>
	<?php 
    }