好的,我找到了这个函数,但它不在抄本中。它来了from Pippin\'s Plugins, 只是为了给未来的读者澄清一下。
此函数似乎用作添加到内容中的筛选器,并且仅在筛选现有内容时运行,因为它正在检索(&;O);替换放置在帖子内容中的库。
因此,我建议重新添加过滤器,不要使用主要内容之外的内容,这里有一个为滑块重新调整用途的函数的修改版本。
function pw_show_gallery_image_urls( $content ) {
global $post;
// Only do this on singular items
if( ! is_singular() )
return $content;
// Make sure the post has a gallery in it
if( ! has_shortcode( $post->post_content, \'gallery\' ) )
return $content;
// Retrieve all galleries of this post
$galleries = get_post_galleries_images( $post );
// Loop through all galleries found
foreach( $galleries as $gallery ) {
$image_list = array();
// Loop through each image in each gallery
foreach( $gallery as $image ) {
$image_list[] = \'<div><img src="\' . $image . \'" ></div>\';
}
// Append our image list to the content of our post
if ( !empty( $image_list ) {
$content .= \'<div class="slider">\' . implode(\'\', $image_list) . \'</div>\';
}
}
return $content;
}
add_filter( \'the_content\', \'pw_show_gallery_image_urls\' );
但是,如果这不能按您希望的方式工作,那么您可能必须找到一个不同的函数来开始,或者从头开始编写。