<script>
$(".boxer").boxer({
formatter: formatCaptions
});
function formatCaptions($target) {
return '<p><span></span><?php the_field('price')?>' + $target.attr("title") + '</p>';
}
</script>
我正在使用jQuery灯箱。事实上,在本地主机中它运作良好,但现在我在网上它并没有显示我需要的东西。该网站为www.automediarent.it(转到第34页; Autoveicoli&#34;&#34; Le mie Auto&#34;) 我希望有人可以帮助我。灯箱是Formstone的灯箱
答案 0 :(得分:0)
您似乎没有打印PHP函数的结果。试试这个:
<script>
$(".boxer").boxer({
formatter: formatCaptions
});
function formatCaptions($target) {
return '<p><span></span><?php echo the_field('price'); ?>' + $target.attr("title") + '</p>';
}
</script>