lundi 19 octobre 2015

Nightclub website using wordpress PHP

I am trying to do a website similar to this on wordpress Sutra Nightclub

Which php code or plugin can I use to add an image slideshow into the header. I used this plugin called metaslider and it runs, it just appears one image.

<!-- Header -->
<html>
<head>
        <title>Graffiti</title>
        <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
</head>
<body>
        <div id="wrapper">
        <div id="header">
                <!---- h1>Grafitti</h1------>
                <?php
                        if (is_front_page() || is_home()) {
                                echo do_shortcode("[metaslider id=41]"); //replace 123 with slider ID
                        }
                ?>

        </div>
        <!--Site Header -->
        <nav class="site-nav">

                <?php

                $args = array(
                        'theme_location' => 'primary'
                        );
                ?>

                <?php wp_nav_menu( $args ); ?>
        
        </nav>

Thanks!



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire