在第一张图片之后,在Wordpress的图库短信中添加摘录

时间:2015-03-13 17:49:27

标签: php wordpress loops gallery shortcode

我有一个图库,它是使用此短代码滚动的图像集合

[gallery itemtag="div" icontag="span" captiontag="p" link="none" size="full" columns="0"]

GALLERY PAGER的例子:

http://rc2.jaywolfe.com/cars-for-sale/2013-toyota-land-cruiser-base-t30061/

需要在第一张图像和第二张图像之间/之间添加内容。我已经能够在其他应用程序中使用这个或变体,但由于它在短代码中,我很难得到它。

<?php $counter = 0; ?>
[gallery itemtag="div" icontag="span" captiontag="p" link="none" size="full" columns="0"]
        <?php if ($counter % 4 == 3): /* ADD THIS */ ?>
<div>test</div>
<?php endif; ?>

              <?php $counter++ ?>

非常感谢任何指导。

1 个答案:

答案 0 :(得分:0)

结束发现这对我有用。只需将它添加到我的functions.php文件中,并根据需要调用新的短代码。

function jw_vdp_gallery() {
    ob_start();
$id = get_post_thumbnail_id(get_the_ID()); // gets the post thumbnail ID
echo do_shortcode('[gallery exclude='.$id.' itemtag="div" icontag="span" captiontag="p" link="none" size="full" columns="0"]');

$output_string = ob_get_contents();  
ob_end_clean();  
return $output_string; 
} 
add_shortcode( 'vdp-gallery', 'jw_vdp_gallery' );