Skip to content

Instantly share code, notes, and snippets.

@chrisgeo
Forked from anonymous/gist:1026477
Created June 15, 2011 04:22
Show Gist options
  • Save chrisgeo/1026479 to your computer and use it in GitHub Desktop.
Save chrisgeo/1026479 to your computer and use it in GitHub Desktop.
<style type="text/css">
<!--
#wrapper {}
#main {width:960px; margin:0 auto; position:absolute; }
#container {margin:0 }
#content {width:960px; margin:0; overflow:hidden; }
#home_container {width:960px; z-index:1}
#home_left {float:left; clear:none;}
#home_right {float:right; clear:none; width:685px;}
#home_right p {text-align:center;}
.photos {}
.text {margin-top:-15px; margin-bottom:25px; padding:3px; background-color:#ed2024; color:#000000; font-size:14px;}
.text a:hover {color:#000000}
#home_container .posts {margin-bottom:-10px;}
-->
</style>
<?php get_header(); ?>
<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"><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>
<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>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment