<?php get_header(); ?>
            
            <div id="content" class="clearfix">
		<div id="WelcomePageMain">
		<h1 class="archive-title">가구를 사랑하는 여러분, 환영합니다!</h1>
		<p>멋진 스타일을 원하세요? 당신의 집과 삶에 모두 어울리는 가구를 원하세요? 그렇다면 잘 오셨습니다.
            <b>Distinct Furnishings</b>는 다양한 가격대에서 최고의 가구를 선사합니다.</p> 

	<div class="col">
		<h2>고급 소파</h2>
		<ul>
			<?php
			global $post;
			$args = array( 'category' => 4, 'order' => 'asc', 'orderby' => 'title' );
			$myposts = get_posts( $args );
			foreach( $myposts as $post ) :	setup_postdata($post); ?>
				<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
			<?php endforeach; ?>
		</ul>
		</div>
		<div class="col">

		<h2>세련된 테이블</h2>

		<ul>
			<?php
			global $post;
			$args = array( 'category' => 5, 'order' => 'asc', 'orderby' => 'title' );
			$myposts = get_posts( $args );
			foreach( $myposts as $post ) :	setup_postdata($post); ?>
				<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
			<?php endforeach; ?>
		</ul>

	</div>
	<div class="col">

		<h2>고품질 의자</h2>

		<?php
		global $post;
		$args = array( 'category' => 3, 'order' => 'asc', 'orderby' => 'title' );
		$myposts = get_posts( $args );
		foreach( $myposts as $post ) :	setup_postdata($post); ?>
			<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
		<?php endforeach; ?>

	</div>

	</div>
    </div> <!-- end #content -->
            
			<?php if (function_exists("pinblack_pagination")) {
							pinblack_pagination(); 
			} elseif (function_exists("pinblack_content_nav")) { 
						pinblack_content_nav( 'nav-below' );
			}?>


<?php get_footer(); ?>