Skip to content

Instantly share code, notes, and snippets.

@chrisgeo
Forked from anonymous/gist:1026477
Created June 15, 2011 04:24
Show Gist options
  • Save chrisgeo/1026480 to your computer and use it in GitHub Desktop.
Save chrisgeo/1026480 to your computer and use it in GitHub Desktop.
<body>
<?php get_header(); ?>
<div id="wrapper">
<div id="home_container">
<div id="home_left">
<div>
<a href="http://www.couturezen.com/?cat=40"><?php
$args=array(
'post__in' => array(57),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php
the_content();
endwhile;
}
?></a>
</div>
<div class="text"><a href="http://www.couturezen.com/?cat=40">Featured Designers</a></div>
<div class="photos">i
<a href="http://www.couturezen.com/?cat=42"><?php
$args=array(
'post__in' => array(73),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php
the_content();
endwhile;
}
?></a>
</div>
<div class="text"><a href="http://www.couturezen.com/?cat=42">World of Couture Zen</a></div>
<div class="photos">
<a href=" http://www.couturezen.com/?page_id=225"><?php
$args=array(
'post__in' => array(77),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php
the_content();
endwhile;
}
?>
</a>
</div>
<div class="text"><a href="http://www.couturezen.com/?page_id=225">Shop the Store</a></div>
</div> <!-- //home-left -->
<div id="home_right">
<?php
$args=array(
'post__in' => array(155),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php
the_content();
endwhile;
}
?>
</div> <!--//home-left -->
</div> <!-- //home=container -->
</div><!-- #wrapper -->
</body>
</html>
<div style="clear:both; background-color: #ed2024; border:none; height:30px; font-size:11px" id="footer" class="footer">
<p style="font-style: italic; text-align:center; padding-top:12px; letter-spacing:.2em">~ Couture with a Conscious ~</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment