????JFIF??x?x????'
| Server IP : 172.67.174.47 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/./tempvsty/pontiacques.org/wp-content/themes/slide/ |
Upload File : |
<?php get_header(); ?>
<?php
$user_items_on_row = get_post_meta(get_the_ID(), 'lc_swp_meta_disco_it_on_row', true);
if (empty($user_items_on_row)) {
$user_items_on_row = 3;
}
$single_item_template = "views/archive/album_item";
$items_on_row = $user_items_on_row;
$item_count = 0;
$archive_nav_classes = "blog_standard_nav discography_post_nav";
$container_class = 'lc_content_full lc_basic_content_padding discography_template_container';
if (3 == $items_on_row) {
$container_class .= " lc_swp_boxed";
$archive_nav_classes .= " lc_swp_boxed";
} else {
$container_class .= " lc_swp_full";
$archive_nav_classes .= " lc_swp_full";
}
if (have_posts()) {
?>
<div class="<?php echo esc_attr($container_class); ?>">
<div class="albums_container clearfix">
<?php
while (have_posts()) : the_post();
$item_count++;
set_query_var('items_on_row', $items_on_row);
set_query_var('item_count', $item_count);
get_template_part($single_item_template);
endwhile;
?>
</div>
</div>
<?php
set_query_var("class_archive_nav", $archive_nav_classes);
get_template_part('views/utils/archive_nav');
}
?>
<?php get_footer(); ?>