global $category_ids;
        $term = $category_ids[$term];
    });
    $custom = get_post_custom($project->ID);
    $attachments = new Attachments('attachments', $project->ID);
    ?>
						<a class="col-sm-6 col-md-4 <?php 
    echo implode(' ', $categories);
    ?>
" href="<?php 
    echo get_permalink($project->ID);
    ?>
">
							<?php 
    if ($attachments->exist()) {
        echo $attachments->image('medium', 0);
    }
    ?>
							<?php 
    echo $project->post_title;
    ?>
						</a>
					<?php 
}
?>
				</div>
			</div>
		</div>
	</div>
</main>
				<div class="row">
					<div class="col-md-12 gallery">
						<div id="gallery" class="carousel slide" data-ride="carousel">
							<div class="carousel-inner" role="listbox">
							<?php 
    while ($index = $attachments->get()) {
        ?>
								<div class="item<?php 
        if ($index->id == $attachments->id(0)) {
            ?>
 active<?php 
        }
        ?>
">
									<?php 
        echo $attachments->image('full');
        ?>
									<div class="carousel-caption">
										<?php 
        echo $attachments->field('caption');
        ?>
									</div>
								</div>
							<?php 
    }
    ?>
							</div>
						</div>
					</div>
				</div>
				<?php 
			<?php 
        $count = -1;
        if ($attachments->exist()) {
            ?>
			  <div id="project-list" class="individual-list">
			    <?php 
            while ($attachments->get()) {
                $count++;
                ?>
      			<div class="project-thumb">
      				<a href="#" data-slide="<?php 
                echo $count;
                ?>
">
      					<?php 
                echo $attachments->image('portfolio-thumb');
                ?>
      				</a>
      			</div>
			    <?php 
            }
            ?>
			  </div>
			<?php 
        }
        ?>
			<?php 
        $attachments = new Attachments('my_attachments');
        ?>
			<?php 
        if ($attachments->exist()) {
    the_post();
    ?>
	<?php 
    $attachments = new Attachments('exhibit_attachments');
    /* pass the instance name */
    ?>
	<div class="horizontal-slider">
	<?php 
    if ($attachments->exist()) {
        ?>
		<?php 
        while ($attachments->get()) {
            ?>

			<a class="swipebox" href="<?php 
            echo $attachments->src('full');
            ?>
">
			<?php 
            echo $attachments->image('gallery');
            ?>
			</a>
		<?php 
        }
        ?>
		</div>
	<?php 
    }
}
// end of the loop.
get_footer();
<?php

$attachments = new Attachments('attachments');
/* pass the instance name */
if ($attachments->exist()) {
    ?>
  <h3 class="page-header">Page attachments</h3>
  <div id="page-attachments">
    <?php 
    while ($attachments->get()) {
        ?>
      <div class="row-fluid">
		<div class="span1"><?php 
        echo $attachments->image('thumbnail');
        ?>
</div>
		<div class="span11">
			<a target="_blank" href="<?php 
        echo $attachments->url();
        ?>
" title="Download"><i class="icon-download-alt"></i> <?php 
        echo $attachments->field('title');
        ?>
 / <?php 
        echo $attachments->filesize();
        ?>
 (<?php 
        echo $attachments->subtype();
        ?>
)</a>
			<?php 
Beispiel #6
0
function get_attachments_array($name, $srcSize = 'full')
{
    $return = array();
    $attachments = new Attachments($name);
    if ($attachments->exist()) {
        $i = 0;
        while ($attachments->get()) {
            $return[$i]['id'] = $attachments->id();
            $return[$i]['type'] = $attachments->type();
            $return[$i]['subtype'] = $attachments->subtype();
            $return[$i]['url'] = $attachments->url();
            $return[$i]['thumbnail'] = $attachments->image('thumbnail');
            $return[$i]['srcfull'] = $attachments->src('full');
            $return[$i]['src'] = $attachments->src($srcSize);
            $return[$i]['filesize'] = $attachments->filesize();
            $return[$i]['title'] = $attachments->field('title');
            $return[$i]['caption'] = $attachments->field('caption');
            $i++;
        }
    }
    return $return;
}