以下を表示する Fancybox エフェクトが必要です。
画像、タイトル、段落
実際には画像とタイトルのみが表示されます。
オーバーレイ ボックスにもテキストを表示するにはどうすればよいですか?
<li>
<a class="fancybox" rel="projects" href="<?php the_field('image'); ?>" title="<?php the_title(); ?>">
<img src="<?php the_field('image'); ?>" alt="" />
</a>
<p>Some content...</p>
</li>
$(".fancybox").fancybox({
padding : 0,
nextEffect : 'fade',
prevEffect : 'fade',
title : this.title,
helpers : {
title : {
type: 'outside'
}
}
});
何か案は?