Files
toppic/single-gallery.php
2024-04-06 11:45:36 +02:00

20 lines
493 B
PHP

<?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(); ?>