예제 #1
0
function entry_thumbnail($args = array())
{
    echo get_entry_thumbnail($args);
}
예제 #2
0
<!-- Blog Post -->
<article id="post-<?php 
the_ID();
?>
" <?php 
post_class();
?>
>
    <?php 
get_entry_thumbnail('large');
?>
    <?php 
get_entry_header();
?>
    <?php 
get_entry_meta();
?>
    <div class="entry-content">
        <?php 
get_entry_content();
?>
        <?php 
is_single() ? get_entry_tags() : '';
?>
    </div>
</article>
<hr>
예제 #3
0
<!-- Blog Post -->
<article id="post-<?php 
the_ID();
?>
" <?php 
post_class();
?>
>
    <?php 
get_entry_thumbnail('thumbnail');
?>
    <?php 
get_entry_header();
?>
    <?php 
get_entry_meta();
?>
    <div class="entry-content">
        <?php 
get_entry_content();
?>
        <?php 
is_single() ? get_entry_tags() : '';
?>
    </div>
</article>
<hr>