I know php very bad, I’m not a coder.
Demo JJ NextGen JQuery Slider very impressive but can you help me WHERE is paste part of plugin in template.
This is in the widget?
<div id=”slider”>
<img src=”<?php bloginfo(“template_url”); ?>/images/slide_1.jpg” alt=”” />
<img src=”<?php bloginfo(“template_url”); ?>/images/slide_2.jpg” alt=”” />
<img src=”<?php bloginfo(“template_url”); ?>/images/slide_3.jpg” alt=”” title=”This is an example of a caption” />
<img src=”<?php bloginfo(“template_url”); ?>/images/slide_4.jpg” alt=”” />
</div>
This is in the index.php or not ?
<!– Include jQuery –>
<?php wp_enqueue_script(‘jquery’); ?>
<?php wp_head(); ?>
<!– Include the Nivo Slider CSS file –>
<link rel=”stylesheet” href=”<?php bloginfo(“template_url”); ?>/scripts/nivoslider/nivo-slider.css” type=”text/css” media=”screen” />
<!– Include the Nivo Slider JS file –>
<script src=”<?php bloginfo(“template_url”); ?>/scripts/nivoslider/jquery.nivo.slider.pack.js” type=”text/javascript”></script>
<!– Set up the Nivo Slider –>
<script type=”text/javascript”>
jQuery(window).load(function() {
jQuery(‘#slider’).nivoSlider();
});
</script>