treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] WORDPRESS: Slideshow Custom Post type?

  • I currently using this Responsive Slides JQuery Plugin. It works perfectly. But I wanted to make it easier to insert photos from my Wordpress Admin. Is there any possible way to create a CPT that allows the user to Upload multiple photos and insert those photos where the image URLS would go?

    I'm using this to add images//

      <ul class="rslides">
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-1.png" alt="Slide 1"/></li>
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-3.png" alt="Slide 2"/></li>
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-2.png" alt="Slide 3"/></li>
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-4.png" alt="Slide 4"/></li>
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-5.png" alt="Slide 5"/></li>
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-6.png" alt="Slide 6"/></li>
      <li><img src="<?php bloginfo('template_directory'); ?>/images/header-7.png" alt="Slide 7"/></li>
    </ul>
    

    Is there any CPT Tutorial out there? Is there a plugin I can use instead to insert photos within a Slideshow?

    Please post any Tutorials, Plugin Recommendations, or help guide me to create a CPT?

  • ACF - Advanced Custom Fields has a gallery option that should be able to do this perfectly.

    http://www.advancedcustomfields.com

    http://www.advancedcustomfields.com/add-ons/gallery-field/

  • @chrisburton thank you I will check it out :)