您好我正在尝试通过添加 jquery 来循环浏览我的图像而不是将其显示为单个图片链接来操作 wordpress 中的默认图库。但是,我似乎找不到要更改的文件 - 我想弄清楚如何自定义默认画廊(最好没有插件)。任何想法将不胜感激。
问问题
252 次
1 回答
0
您可以过滤默认画廊简码并将其替换为您自己的简码函数。
add_filter( 'post_gallery', 'your_gallery_func', 10, 2);
在your_gallery_func
您将需要模仿默认画廊并提取 atts:
/*
* Extract default gallery settings
*/
extract(shortcode_atts(array(
'order' => 'ASC',
'orderby' => 'menu_order ID',
'id' => $post->ID,
'itemtag' => 'dl',
'icontag' => 'dt',
'captiontag' => 'dd',
'columns' => 3,
'size' => 'thumbnail',
), $attr));
接下来,您将需要获取附加到帖子的所有图像,如果没有则返回:
$attachments = get_children( array('post_parent' => $id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) );
if ( empty( $attachments ) )
return '';
接下来编写要输出的代码,将其分配给变量,然后在函数末尾返回它。
这只是一个例子:
/**
* Open the gallery <div>
*/
$output .= '<div id="gallery-'.$id.'" class="content gallery gallery-'.$id.'">'."\n";
$output .= '<div id="thumbs" class="navigation">'."\n";
/**
* Loop through each attachment
*/
foreach ( $attachments as $id => $attachment ) :
/**
* Open each gallery item
*/
$output .= "\n\t\t\t\t\t<li class='gallery-item'>";
$output .= '<a class="thumb" href="' . $link[0] . '" title="' . $title . '">';
$output .= '<img src="' . $img[0] . '" alt="' . $title . '" title="' . $title . '" />';
$output .= '</a>';
/**
* Close individual gallery item
*/
$output .= "\n\t\t\t\t\t</li>";
endforeach;
/**
* Close gallery and return it
*/
$output .= '</ul><!--.thumbs-->'."\n";
$output .= '</div><!--#gallery-wrap-->'."\n";
return $output;
于 2012-05-29T09:03:29.333 回答