Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
project
/
Editing: archive-project.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $project_archive_style = RDTheme::$options['project_archive_style']; $container_class = 'container content-padding'; if ($project_archive_style == 3) { $container_class = 'content-padding'; if (Helper::has_sidebar()) { $container_class .= ' container'; } } ?> <div class="<?php echo esc_attr( $container_class ); ?>"> <div class="row"> <?php Helper::left_sidebar(); ?> <div class="<?php echo esc_attr( Helper::the_layout_class() ); ?>"> <?php get_template_part('template-parts/project/content-project', $project_archive_style) ?> </div> <?php Helper::right_sidebar(); ?> </div> </div> <?php get_footer(); ?>
Save
Cancel