at path:
ROOT
/
wp-content
/
themes
/
kroth
/
single-team.php
run:
R
W
Run
assets
DIR
2023-04-17 09:50:05
R
W
Run
inc
DIR
2023-04-17 09:50:05
R
W
Run
languages
DIR
2023-04-17 09:50:05
R
W
Run
layouts
DIR
2023-04-17 09:50:05
R
W
Run
woocommerce
DIR
2023-04-17 09:50:05
R
W
Run
404.php
1.42 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
archive.php
3.44 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
comments.php
4.42 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
footer.php
1.14 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
functions.php
1.53 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
header.php
7.78 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
index.php
3.36 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
page.php
3.24 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
readme.txt
0 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
rtl.css
449 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
screenshot.png
203 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
search.php
1.98 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
searchform.php
381 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
sidebar-shop.php
465 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
sidebar.php
1.24 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
single-portfolio.php
2.98 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
single-team.php
2.37 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
single.php
2.84 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
style.css
2.84 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
taxonomy.php
1.58 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
woocommerce.php
2.52 KB
2023-04-17 09:50:05
R
W
Run
Delete
Rename
wpml-config.xml
791 By
2023-04-17 09:50:05
R
W
Run
Delete
Rename
error_log
up
📄
single-team.php
Save
<?php /* * The template for displaying all single team. * Author & Copyright: VictorThemes * URL: https://victorthemes.com */ get_header(); // Metabox $kroth_id = ( isset( $post ) ) ? $post->ID : 0; $kroth_id = ( is_home() ) ? get_option( 'page_for_posts' ) : $kroth_id; $kroth_id = ( is_woocommerce_shop() ) ? wc_get_page_id( 'shop' ) : $kroth_id; $kroth_meta = get_post_meta( $kroth_id, 'page_type_metabox', true ); if ($kroth_meta) { $kroth_content_padding = $kroth_meta['content_spacings']; } else { $kroth_content_padding = ''; } // Padding - Theme Options if ($kroth_content_padding && $kroth_content_padding !== 'padding-none') { $kroth_content_top_spacings = $kroth_meta['content_top_spacings']; $kroth_content_bottom_spacings = $kroth_meta['content_bottom_spacings']; if ($kroth_content_padding === 'padding-custom') { $kroth_content_top_spacings = $kroth_content_top_spacings ? 'padding-top:'. kroth_check_px($kroth_content_top_spacings) .';' : ''; $kroth_content_bottom_spacings = $kroth_content_bottom_spacings ? 'padding-bottom:'. kroth_check_px($kroth_content_bottom_spacings) .';' : ''; $kroth_custom_padding = $kroth_content_top_spacings . $kroth_content_bottom_spacings; } else { $kroth_custom_padding = ''; } } else { $kroth_top_spacing = cs_get_option('team_top_spacing'); $kroth_bottom_spacing = cs_get_option('team_bottom_spacing'); if ($kroth_top_spacing || $kroth_bottom_spacing) { $kroth_top_spacing = $kroth_top_spacing ? 'padding-top:'. kroth_check_px($kroth_top_spacing) .';' : ''; $kroth_bottom_spacing = $kroth_bottom_spacing ? 'padding-bottom:'. kroth_check_px($kroth_bottom_spacing) .';' : ''; $kroth_custom_padding = $kroth_top_spacing . $kroth_bottom_spacing; } else { $kroth_custom_padding = ''; } } // Sidebar Position $kroth_layout_class = 'col-lg-12 no-padding'; ?> <div class="container krth-content-area <?php echo esc_attr($kroth_content_padding); ?>" style="<?php echo esc_attr($kroth_custom_padding); ?>"> <div class="row"> <div class="<?php echo esc_attr($kroth_layout_class); ?> sngl-team-cnt"> <div class="krth-blog-one krth-blog-list krth-blog-col-1"> <?php if (have_posts()) : while (have_posts()) : the_post(); the_content(); endwhile; endif; ?> </div><!-- Blog Div --> <?php wp_reset_postdata(); // avoid errors further down the page ?> </div><!-- Content Area --> </div> </div> <?php get_footer();