プラグインを使用せずに、Wordpress サイトに Highslide を統合しようとしています。hs.graphicsDir 変数を次のように変更しました。
graphicsDir : 'http://hyohanpark.com/wp-content/themes/Noir/highslide/graphics/'
タグ内のコードも次のように読みます。
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/highslide/highslide-with-gallery.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/highslide/highslide.config.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/highslide/highslide.css" />
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/highslide/highslide-ie6.css" />
<![endif]-->
highslide を使用して開く画像を表示しているときのコードは次のようになります。
<div class="highslide-gallery">
<ul>
<li>
<a href="http://hyohanpark.com/wp-content/uploads/2013/03/IMG_0042.png" class="highslide"
onclick="return hs.expand(this, config1 )">
<img src="http://hyohanpark.com/wp-content/uploads/2013/03/IMG_0042.png" width="230" height="154" alt=""/>
</a>
</li>
</ul>
<div style="clear:both"></div></div>
すべてが機能しているようです。ただし、画像をクリックすると、展開する代わりに、画像への通常のリンクであるかのように画像の URL が開きます。
画像を適切に拡大するための助けをいただければ幸いです。
ありがとう!