| Server IP : 213.136.93.164 / Your IP : 216.73.216.20 Web Server : Apache System : Linux m14200.contabo.net 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : ki692510 ( 1047) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/ki692510/www/wp-content/themes/bifrost/ |
Upload File : |
<?php
/**
* Attachment Page
*/
get_header();
/**
* Breadcrumb
*/
$bifrost_page_breadcrumb = bifrost_inherit_option('general_archive_breadcrumb', 'breadcrumbs_archives_visibility', '2');
bifrost_breadcrumbs($bifrost_page_breadcrumb, get_theme_mod('breadcrumbs_separator'));
if (have_posts()) :
?>
<div class="l-blog-wrapper h-large-top-padding h-large-bottom-padding">
<div class="container">
<div class="l-blog-wrapper__posts-holder">
<?php while (have_posts()) : the_post() ?>
<div <?php post_class() ?> id="id-<?php the_ID() ?>" data-id="<?php the_ID() ?>">
<div class="o-blog-post">
<a href="<?php echo wp_get_attachment_url(get_the_ID()) ?>">
<?php echo wp_get_attachment_image(get_the_ID(), 'full') ?>
</a>
<a href="<?php echo wp_get_attachment_url(get_the_ID()) ?>">
<?php echo wp_get_attachment_url(get_the_ID()) ?>
</a>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
<?php
endif; wp_reset_postdata();
get_footer();