<?php /** * team section * * This is the template for the content of team section * * @team Theme Palace * @subteam Businesszen * @since Businesszen 1.0.0 */ if ( ! function_exists( 'businesszen_add_team_section' ) ) : /** * Add team section * *@since Businesszen 1.0.0 */ function businesszen_add_team_section() { $options = businesszen_get_theme_options(); // Check if team is enabled on frontpage $team_enable = apply_filters( 'businesszen_section_status', true, 'team_section_enable' ); if ( true !== $team_enable ) { return false; } // Get team section details $section_details = array(); $section_details = apply_filters( 'businesszen_filter_team_section_details', $section_details ); if ( empty( $section_details ) ) { return; } // Render team section now. businesszen_render_team_section( $section_details ); } endif; if ( ! function_exists( 'businesszen_get_team_section_details' ) ) : /** * team section details. * * @since Businesszen 1.0.0 * @param array $input team section details. */ function businesszen_get_team_section_details( $input ) { $options = businesszen_get_theme_options(); $content = array(); $page_ids = array(); for ( $i = 1; $i <= 4; $i++ ) { if ( ! empty( $options['team_content_page_' . $i] ) ) $page_ids[] = $options['team_content_page_' . $i]; } $args = array( 'post_type' => 'page', 'post__in' => ( array ) $page_ids, 'posts_per_page' => 4, 'orderby' => 'post__in', ); // Run The Loop. $query = new WP_Query( $args ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); $page_post['title'] = get_the_title(); $page_post['url'] = get_the_permalink(); $page_post['image'] = has_post_thumbnail() ? get_the_post_thumbnail_url( get_the_id(), 'large' ) : get_template_directory_uri() . '/assets/uploads/no-featured-image-590x650.jpg'; // Push to the main array. array_push( $content, $page_post ); endwhile; endif; wp_reset_postdata(); if ( ! empty( $content ) ) { $input = $content; } return $input; } endif; // team section content details. add_filter( 'businesszen_filter_team_section_details', 'businesszen_get_team_section_details' ); if ( ! function_exists( 'businesszen_render_team_section' ) ) : /** * Start team section * * @return string team content * @since Businesszen 1.0.0 * */ function businesszen_render_team_section( $content_details = array() ) { $options = businesszen_get_theme_options(); $team_sub_title = ! empty( $options['team_sub_title'] ) ? $options['team_sub_title'] : ''; $team_title = ! empty( $options['team_title'] ) ? $options['team_title'] : ''; if ( empty( $content_details ) ) { return; } ?> <div id="businesszen_our_team_section" class="relative page-section same-background"> <div class="wrapper"> <div class="section-header"> <?php if( !empty( $team_sub_title ) ): ?> <p class="section-subtitle"><?php echo esc_html( $team_sub_title ); ?></p> <?php endif; if( !empty( $team_title ) ): ?> <h2 class="section-title"><?php echo esc_html( $team_title ); ?></h2> <?php endif; ?> </div><!-- .section-header --> <div class="section-content clear col-4"> <?php $i = 1; foreach ( $content_details as $content ) : ?> <article> <div class="team-item-wrapper"> <div class="featured-image"> <a href="<?php echo esc_url( $content['url'] ); ?>"><img src="<?php echo esc_url( $content['image'] ); ?>" alt="team-<?php echo esc_attr( $i+1 ); ?>"></a> </div><!-- .featured-image --> <div class="entry-container"> <header class="entry-header"> <h2 class="entry-title"><a href="<?php echo esc_url( $content['url'] ); ?>"> <?php echo esc_html( $content['title'] ); ?> </a></h2> <?php if ( !empty( $options['team_position_'.$i] )): ?> <span class="position"><?php echo esc_html( $options['team_position_'.$i] ) ; ?></span> <?php endif; ?> </header> <ul class="social-icons"> <?php $team_socials = ! empty( $options['team_social_' . $i ] ) ? explode( '|', $options['team_social_' . $i ] ) : array(); foreach ( $team_socials as $team_social ) : ?> <li> <a href="<?php echo esc_url( $team_social ); ?>"><?php echo businesszen_return_social_icon( $team_social ); ?></a> </li> <?php endforeach; ?> </ul><!-- .social-icons --> </div><!-- .entry-container --> </div><!-- .team-item-wrapper --> </article> <?php $i++; endforeach; ?> </div><!-- .section-content --> </div><!-- .wrapper --> </div><!-- #businesszen_our_team_section --> <?php } endif;