我所有这一切的最终目标是创建一个图库页面,该页面会自动上传附加到网站上任何已发布帖子的图像。在我的搜索中,我找到了下面的代码(也可以在此处找到),将其放在我的 fucntions.php 中,效果很好,但我不能使用任何其他画廊输出选项(大小、顺序、orderby 等... ) 以帮助以我想要的方式组织图像。查看代码似乎我需要添加/引入其他输出选项,但是对此非常陌生,我不确定如何修改下面的代码以实现这一点。有什么想法吗?
/**
* Usage: [catgallery cat="4,5"]
* Attribute: array of category IDs
*/
add_shortcode('catgallery', 'wpse_70989_cat_gallery_shortcode');
function wpse_70989_cat_gallery_shortcode($atts)
{
// $return = ''; // DEBUG: enable for debugging
$arr = array();
$cat_in = explode( ',', $atts['cat'] );
$catposts = new WP_Query( array(
'posts_per_page' => -1
, 'category__in' => $cat_in
) );
foreach( $catposts->posts as $post)
{
// DEBUG: Enable the next line to print the post title
// $return .= '<strong>' . $post->post_title . '</strong><br />';
$args = array(
'post_type' => 'attachment'
, 'numberposts' => -1
, 'post_status' => null
, 'post_parent' => $post->ID
);
$attachments = get_posts($args);
if ($attachments)
{
foreach ( $attachments as $attachment )
{
// DEBUG: Enable the next line to debug the attachement object
// $return .= 'Attachment:<br /><pre>' . print_r($attachment, true) . '</pre><br />';
$arr[] = $attachment->ID;
}
}
}
// DEBUG: Disable the next line if debugging
$return = do_shortcode( '[gallery include="' . implode( ',', $arr ) . '"]' );
return $return;
}