In this post are looking for language specific query in WordPress. WMP is the top multilingual plugin in WordPress. If you are developing a multi-language site and you want display content only for a specific language this code snippet will help you.
<?php $query = new WP_Query( 'page_id='.icl_object_id(221,'page',true) ); while ( $query->have_posts() ) : $query->the_post(); ?> <div class="yellow_content"> <?php the_content(); ?> <?php endwhile; ?> <?php wp_reset_query();?> </div>
icl_object_id(221,'page',true) )
221 = Page id if this page in admin area.