Hello Frineds,
I tried to make a custom template for wp home
i was following this
here is my custom home p[age code
<?php
/* Template Name:Custom Home Page */
get_header();
?>
<div id="main_wrapper">
<div id="featured_area">
<div id="feature_slider">
<ul>
<li><a href=""><img src="<?php bloginfo('template_directory');?>images/01.jpg" alt="First slide" /></a></li>
<li><a href=""><img src="<?php bloginfo('template_directory');?>images/02.jpg" alt="Second slide" /></a></li>
<li><a href=""><img src="<?php bloginfo('template_directory');?>images/03.jpg" alt="Third slide" /></a></li>
<li><a href=""><img src="<?php bloginfo('template_directory');?>images/04.jpg" alt="Fourth slide" /></a></li>
<li><a href=""><img src="<?php bloginfo('template_directory');?>images/05.jpg" alt="Fifth slide" /></a></li>
</ul>
<!--<h1>This is featured area</h1>-->
</div>
</div>
<div id="column_wrapper">
<div class="column">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('left_column')) : else : ?>
<p><strong>Widget Ready</strong></p>
<p>This left_column is widget ready! Add one in the admin panel.</p>
<?php endif; ?>
</div>
<div class="column">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('center_column')) : else : ?>
<p><strong>Widget Ready</strong></p>
<p>This center_column is widget ready! Add one in the admin panel.</p>
<?php endif; ?>
</div>
<div class="column">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('right_column')) : else : ?>
<p><strong>Widget Ready</strong></p>
<p>This right_column is widget ready! Add one in the admin panel.</p>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>
i have checked the images and script are in respective folders
but neither the images are showing nor the slider is working