1st commit

This commit is contained in:
2024-04-06 11:45:36 +02:00
commit 62a52850bc
228 changed files with 37418 additions and 0 deletions

20
single-gallery.php Normal file
View File

@@ -0,0 +1,20 @@
<?php get_header(); ?>
<?php if ( post_password_required( $post ) ) {
get_template_part( 'password-form' );
} else {
$galleryLayout = get_post_meta($post->ID, '_gallery_layout_value', true);
if ( $galleryLayout == 'Fullscreen' || $galleryLayout == 'Fullscreen-Grid' ) {
get_template_part( 'galleries/template-gallery-' . $galleryLayout );
} else {
get_template_part( 'galleries/template-gallery-columns' );
}
}
?>
<?php get_footer(); ?>