我已通过将图像库添加到我的页面Add Media > Create Gallery. 我不想输出gallery的默认html,也没有足够的选项来更改gallery sortcode的属性:itemtag
, icontag
, captiontag
因为我想要一个完全定制的html。
我试过过滤post_gallery
, 抓取作为图库包含在该页面中的图像的URL并将其输出:
add_filter( \'post_gallery\', \'my_name_page_gallery\', 10, 2 );
function my_name_page_gallery($output, $attr) {
$output = get_post_gallery_images();
return $output;
}
但我得到以下错误:
已达到最大函数嵌套级别“512”,正在中止!in/wp包括/短代码。php第234行
我做错了什么?如何获取库图像的URL并输出自定义html?