• Hey

    How does it come that every plugin in my site doesn’t properly work? I have made a very simple code for my website.

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title> <?php wp_title(); ?> </title>
    <link href=" <?php bloginfo('stylesheet_url');?> " rel="stylesheet" type="text/css" />
    <link href="style.css" type="text/css" rel="stylesheet" />
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
    <div id="slideshow">
       <div>
         <img src="...">
       </div>
       <div>
         <img src="...">
       </div>
    </div>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
    	<script>
    		$(function() {
    
    			$("#slideshow > div:gt(0)").hide();
    
    			setInterval(function() {
    			  $('#slideshow > div:first')
    			    .fadeOut(1000)
    			    .next()
    			    .fadeIn(1000)
    			    .end()
    			    .appendTo('#slideshow');
    			},  3000);
    
    		});
    	</script>
    
    	</div>
    </head>
    <body>
    <div id="header">
    
    <div id='cssmenu'>
    <ul>
      <?php wp_list_pages('title_li='); ?>
    </ul>
    </div>
    
    <div id="content">
    	<p><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        			<h1><?php the_title(); ?></h1>
    				<?php the_content(); ?>
    			<?php endwhile; endif; ?>
            </div><!--/ #content -->
    
    	</div>
    <div id="footer">
    
    	</div>
    
    </body>
    </html>

    Thanks for your help already!

  • The topic ‘Plugins doesn't work’ is closed to new replies.