예제 #1
0
<article id="post-<?php 
the_ID();
?>
" <?php 
post_class();
?>
>
        <header class="entry-header">
        	<?php 
first_theme_thumbnail('large');
?>
 			<?php 
first_theme_entry_header();
?>
 			<?php 
/*
 * Đếm số lượng attachment có trong post
 */
$attachments = get_children(array('post_parent' => $post->ID));
$attachment_number = count($attachments);
printf(__('This image post contains %1$s photos', 'thachpham'), $attachment_number);
?>
        </header>
        <div class="entry-content">
 			<?php 
first_theme_entry_content();
?>
        	<?php 
is_single() ? first_theme_entry_tag() : '';
?>
        </div>
예제 #2
0
파일: content.php 프로젝트: daibien/test
<article id="post-<?php 
the_ID();
?>
" <?php 
post_class();
?>
>
        <div class="entry-thumbnail">
 			<?php 
first_theme_thumbnail('thumbnail');
?>
        </div>
        <header class="entry-header">
 			<?php 
first_theme_entry_header();
?>
 			<?php 
first_theme_entry_meta();
?>
        </header>
        <div class="entry-content">
 			<?php 
first_theme_entry_content();
?>
        	<?php 
is_single() ? first_theme_entry_tag() : '';
?>
        </div>
</article>