whoami7 - Manager
:
/
home
/
qbizpnmr
/
public_html
/
wp-content
/
themes
/
essentials
/
template-parts
/
Upload File:
files >> /home/qbizpnmr/public_html/wp-content/themes/essentials/template-parts/portfolio-item-sidebar.php
<?php /** * Template part for displaying single portfolio * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package pixfort theme */ $classes = ''; if (!get_post_meta(get_the_ID(), 'pix-hide-top-padding', true)) { $classes .= 'pt-5'; } ?> <div id="content" class="site-content <?php echo esc_html($classes); ?>"> <div class="container"> <div class="row"> <div class="col-12 col-md-5"> <div id="primary" class="content-area sticky-top pix-sticky-top-adjust" style="top:100px;"> <main id="main" class="site-main"> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="entry-content"> <?php if(!get_post_meta( get_the_ID(), "pix-post-hide-content", true) ){ echo get_post_meta(get_the_ID(), "portfolio-text", true); } if (get_post_meta(get_the_ID(), 'pix-highlights', true)) { echo '<div class="d-inline-block shadow-lg bg-white w-100 pix-mt-20" style="border-top-left-radius:5px;border-top-right-radius:5px;">'; if (get_post_meta(get_the_ID(), 'pix-highlights', true)) { $data = get_post_meta(get_the_ID(), 'pix-highlights', true); $data = json_decode(wp_specialchars_decode($data)); if (is_array($data) && count($data) > 0) { echo '<div class="d-md-flex pix-pt-20 pix-pb-10" >'; $delay = 400; foreach ($data as $key => $value) { ?> <div class="flex-md-fill w-100 text-center pix-py-10 animate-in" data-anim-type="fade-in-up" data-anim-delay="<?php echo esc_attr($delay); ?>"> <?php if (!empty($value->title)) { ?> <div class=""> <h6 class="text-heading-default text-20 font-weight-bold"><?php echo esc_attr($value->title); ?></h6> </div> <?php } if (!empty($value->value)) { ?> <div class="text-body-default"><?php echo do_shortcode($value->value); ?></div> <?php } ?> </div> <?php $delay += 150; } echo '</div>'; } } echo '</div>'; echo '<div class="d-block position-relative w-100 pix-mb-60 pix-pb-30">'; if (function_exists('pix_get_divider')) { $b_divider_opts = array( 'd_divider_select' => 'intro-box', 'd_layers' => '3', 'd_1_is_gradient' => '', 'd_1_color' => '#fff', 'd_2_is_gradient' => '', 'd_2_color' => 'rgba(255,255,255,0.6)', 'd_2_animation' => 'fade-in-up', 'd_2_delay' => '500', 'd_3_is_gradient' => '', 'd_3_color' => 'rgba(255,255,255,0.3)', 'd_3_color_2' => '', 'd_3_animation' => 'fade-in-up', 'd_3_delay' => '700', 'd_high_index' => '', 'd_flip_h' => '', 'extra_classes' => 'pix-svg-box-shadow', ); echo pix_get_divider('intro-box', '#fff', 'top', false, '#fff', $b_divider_opts, 37); } echo '</div>'; } if (!empty(pix_get_option('portfolio-post-info'))) { echo '<div class="p-3 bg-gray-12 shadow-sm rounded-lg text-body-default font-weight-bold text-xs">'; essentials_posted_on(); essentials_posted_by(); echo '</div>'; } wp_link_pages(array( 'before' => '<div class="page-links">' . esc_attr__('Pages:', 'essentials'), 'after' => '</div>', )); ?> </div><!-- .entry-content --> <footer class="entry-footer"> <?php essentials_entry_footer(); ?> </footer><!-- .entry-footer --> </article><!-- #post-<?php the_ID(); ?> --> </main><!-- #main --> </div><!-- #primary --> </div> <div class="col-12 col-md-7"> <div class="sticky-top" style="top:100px;"> <?php the_content(); ?> </div> </div> </div> </div> </div>
Copyright ©2021 || Defacer Indonesia