Wordpress Feature Post With Slider Jquery

Discussion in 'Programming' started by sp2h, Feb 12, 2010.

  1. #1
    IN Your Head Section

    <?php
    wp_enqueue_script('jquery');
    wp_enqueue_script('jquery-ui-core');
    wp_enqueue_script('jquery-ui-tabs');
    wp_head();
    ?>
    <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/easySlider1.5.js"></script>
    <script type="text/javascript">
    $j=jQuery.noConflict();

    // Use jQuery via $j(...)
    $j(document).ready(function(){
    $j("#slider").easySlider({
    auto: true,
    continuous: true
    });
    });

    </script>



    IN YOUR BODY SECTION




    <div id="slider">
    <ul>
    <?php query_posts('showposts=3&category_name=Featured'); ?>
    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>
    <?php
    $parent_title = get_the_title($post->ID);
    ?>
    <li>
    <div class="slide-con-left">
    <h2>Feature stories</h2>
    <h3><a href="<?php the_permalink()?>"><?=substr($parent_title,0,28); ?><? if(strlen($parent_title) > 28) echo '...'; ?></a></h3>
    <?php the_excerpt(); ?>
    </div>
    <div class="slide-con-right" align="center"><img src="<?php bloginfo('template_url'); ?>/images/ebook-image.png" alt="Ebook" /></div>
    </li>
    <?php endwhile; ?>
    <?php endif; ?>
    <?php
    wp_reset_query();
    ?>
    </ul>
    </div>
     
    sp2h, Feb 12, 2010 IP
  2. SecureCP

    SecureCP Guest

    Messages:
    226
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hey there, do you have an example of this baby in action. I'd like to take it for a testdrive ;)
     
    SecureCP, Feb 12, 2010 IP
  3. sp2h

    sp2h Peon

    Messages:
    189
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    0
    #3
    ebookstrategies101.com, thinkgeo.nwc.is want more?
     
    sp2h, Feb 12, 2010 IP
  4. surfaddict

    surfaddict Active Member

    Messages:
    1,781
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    90
    #4
    Yes, I also want to have a look any sample of action.
     
    surfaddict, Feb 12, 2010 IP