コード例 #1
0
ファイル: functions.php プロジェクト: alx/douce-offensive
function display_main_photo($offset = 0)
{
    $main_photo = query_main_photo($offset);
    if ($main_photo->have_posts()) {
        $main_photo->the_post();
        global $post;
        ?>

			<div class="post">

				<div id="main_photo">
					<?php 
        // Just display photo
        echo douce_main($post);
        ?>
				</div><!-- entry -->
				
				<h5 id="photo_title"><?php 
        the_title();
        ?>
</h5>

			</div><!-- post -->
			
		<div id="navigator">

		<?php 
        // Display this post in navigator first
        // because other will be dynamicly assigned
        echo douce_thumbnail($post, true, true);
    }
}
コード例 #2
0
ファイル: index.php プロジェクト: alx/amandineleconte.fr
if (is_front_page()) {
    $post_request .= '&orderby=date&order=DESC';
}
query_posts($post_request);
while (have_posts()) {
    the_post();
    global $page;
    $page = 1;
    ?>

				<div class="post">

					<div id="main_photo">
						<?php 
    // Just display photo
    echo douce_main($post);
    ?>
					</div><!-- entry -->
					
					<h5 id="photo_title"><?php 
    the_title();
    ?>
</h5>
					
					<?php 
    // Just display description
    //echo ereg_replace( "<img.[^>]*>", "", get_the_content() );
    ?>

				</div><!-- post -->