Php 我如何设计这个画廊?

Php 我如何设计这个画廊?,php,css,photo-gallery,Php,Css,Photo Gallery,嗨,我把这段代码实现到我的wordpress主题中了吗 该代码是为了自动拉所有的图像是附加到文章,它只是这样做,但它对齐了所有的图像下面的另一个我从哪里开始样式,这样的图像将出现并排 这是代码 <?php if ( 'gallery' == get_post_type() ) { //condition to show gallery on post type - gallery if ( $attachments = get_children( array( 'post_ty

嗨,我把这段代码实现到我的wordpress主题中了吗

该代码是为了自动拉所有的图像是附加到文章,它只是这样做,但它对齐了所有的图像下面的另一个我从哪里开始样式,这样的图像将出现并排

这是代码

<?php

if ( 'gallery' == get_post_type() ) { //condition to show gallery on post type - gallery

if ( $attachments = get_children( array(
    'post_type' => 'attachment',
    'post_mime_type'=>'image',   //return all image attachment only
    'numberposts' => -1,   //get all the attachments
    'post_parent' => $post->ID
)));

foreach ($attachments as $attachment) {
    // you can customize the oputput
    echo wp_get_attachment_link( $attachment->ID, 'full' , false, false, '' );
}
}

?>


使用google chrome的inspector或Firefox的Firebug扩展来查看您的图像上放置了什么类型的类。然后编辑主题中的style.css以进行必要的更改。根据您使用的插件,您可能可以更改类,甚至更改与插件代码的对齐方式,但也没有理由不在css中这样做。

信息不足。这个插件叫什么?我们能看到生成的HTML吗?以及相关的CSS?