• I’m using the wordtube plugin with the CSS Gallery template, which you can see @ http://www.bestcssgallery.com/ or get from http://www.osdesigner.net/wordpress-themes/css-gallery-theme/ . The problem can be viewed @ http://blog.opensystem.us/?page_id=21 . It appears that the header isn’t correctly calling flash, I attempted to correct this with wp_head, but I’ve had no luck. Any healp would be appreciated,Below you’ll see my header.php

    <?php require_once get_template_directory().”/my_functions.php”; ?>

    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>

    <head profile=”http://gmpg.org/xfn/11″&gt;
    <?php wp_head(); ?>

    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />

    <title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>

    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats –>

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />

    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />

    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />

    <script src=”<?php bloginfo(‘template_url’); ?>/js/tabber.js” type=”text/javascript”></script>

    </head>

    <body>

    <div id=”wrapper”>

    <div id=”header”>

    <h1>/” id=”logo”></h1>

    </div>

    <div id=”nav”>

    <p class=”rss”>/feed/”></p>

      <li class=”main”> href=”<?php bloginfo(‘url’); ?>/”>Home

      <?php

      $pages = my_get_pages();

      if ($pages) {

      foreach ($pages as $page) {

      $page_id = $page->ID;

      $page_title = $page->post_title;

      $page_name = $page->post_name;

      if ($page_name == “archives”) {

      // (is_page($page_id) || is_archive() || is_search() || is_single())?$selected = ‘ ‘:$selected=”;

      (is_page($page_id) || is_archive() || is_search() || is_single())?$selected = ‘ id=”current”‘:$selected=”;

      echo “<li”.$selected.” class=\”normal\”>Archives\n”;

      }

      elseif($page_name == “about”) {

      (is_page($page_id))?$selected = ‘ id=”current”‘:$selected=”;

      echo “<li class=\”normal\”><a”.$selected.” href=\””.get_page_link($page_id).”\”>About\n”;

      }

      elseif ($page_name == “contact”) {

      (is_page($page_id))?$selected = ‘ id=”current”‘:$selected=”;

      echo “<li class=\”normal\”><a”.$selected.” href=\””.get_page_link($page_id).”\”>Contact\n”;

      }

      elseif ($page_name == “about_short”) {/*ignore*/}

      else {

      (is_page($page_id))?$selected = ‘ id=”current”‘:$selected=”;

      echo “<li class=\”normal\”><a”.$selected.” href=\””.get_page_link($page_id).”\”>$page_title\n”;

      }

      }

      }

      /* Many thanks to Blix creator Sebastian Schmieg for his PHP scripting, get Blix – http://www.kingcosmonaut.de/blix/ */

      ?>

    </div>

    <div class=”navbottom”></div>

  • The topic ‘Wordtube not calling flash correctly’ is closed to new replies.