0

我所有这一切的最终目标是创建一个图库页面,该页面会自动上传附加到网站上任何已发布帖子的图像。在我的搜索中,我找到了下面的代码(也可以在此处找到),将其放在我的 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;
}
4

1 回答 1

0

默认的 Wordpress 库带有此处指定的 orderby 和 size 选项,因此只需将您喜欢的选项添加到 do_shortcode 行。

如果你想要更复杂的东西,你可能需要开发一个自定义插件。

于 2013-07-18T02:12:54.410 回答