<?php if (have_posts()) : ?>
<!--- LOOP -->
<?php while (have_posts()) : the_post(); ?>
<!--- PLACE YOUR CODE HERE, use $post->ID to identify post
See above: $lang = get_post_meta($post->ID , "lang", true); .... -->
<!--- Show post -->
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<!--
<p class="byline"><small><?php the_time('F jS, Y') ?> by <?php the_author() ?> <?php edit_post_link('Edit', ' | ', ''); ?></small></p>
-->
<div class="entry">
<!-- <?php
// the_excerpt();
?> -->
<?php the_content(__('Read more'));?>
<div style="clear:both;"></div>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<!--- LOOP -->
<?php while (have_posts()) : the_post(); ?>
<!--- PLACE YOUR CODE HERE, use $post->ID to identify post
See above: $lang = get_post_meta($post->ID , "lang", true); .... -->
<!--- Show post -->
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<!--
<p class="byline"><small><?php the_time('F jS, Y') ?> by <?php the_author() ?> <?php edit_post_link('Edit', ' | ', ''); ?></small></p>
-->
<div class="entry">
<!-- <?php
// the_excerpt();
?> -->
<?php the_content(__('Read more'));?>
<div style="clear:both;"></div>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
if( isset($lang) && !empty($lang) && strcasecmp($lang, "EN") == 0 ){
// This is a post in English .... show post here
}