• Hi – I’m trying to create a Front static page for my Blog. This is used for the purpose of showing a Nextgen gallery slide show as a sort of flash-intro page..
    I have created my static page and a template. Both have intergrated into word press. But when I put in the tag for the gallery, [gallery=1] the slideshow doesn’t show up on the static page:

    Here is the code for my static page template:
    !DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
    <?php
    /*
    Template Name: tideintro

    */
    ?>
    <html xmlns=”https://www.w3.org/1999/xhtml”&gt;
    <head>
    <?php wp_head();?>
    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
    <title>Untitled Document</title>
    <style type=”text/css”>
    <!–
    body {
    background-color: #000000;
    }
    .style1 {color: #CCCCCC}
    –>
    </style></head>

    <body>
    </body>
    </html>

    ********************
    static page is called Title”

    Can anyone help me out with this?

Viewing 1 replies (of 1 total)
  • There is nothing inside the body tags to place your content in.
    Try this:

    <div id=”content”>
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php the_content(); ?>
    <?php endwhile; endif; ?>
    </div>

    Put your [gallery=1] inside the page via the admin panel.

    Good luck.

Viewing 1 replies (of 1 total)
  • The topic ‘Using a Nextgen Gallery on a static page’ is closed to new replies.