Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
firepot
/
wp-content
/
themes
/
impressive-portfolio
/
inc
/
sections
:
blog-20250110161919.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! get_theme_mod( 'pure_portfolio_enable_blog_section', false ) ) { return; } $content_ids = array(); $content_type = get_theme_mod( 'pure_portfolio_blog_content_type', 'post' ); if ( $content_type === 'post' ) { for ( $i = 1; $i <= 3; $i++ ) { $content_ids[] = get_theme_mod( 'pure_portfolio_blog_content_post_' . $i ); } $args = array( 'post_type' => $content_type, 'post__in' => array_filter( $content_ids ), 'orderby' => 'post__in', 'posts_per_page' => absint( 3 ), 'ignore_sticky_posts' => true, ); } else { $cat_content_id = get_theme_mod( 'pure_portfolio_blog_content_category' ); $args = array( 'cat' => $cat_content_id, 'posts_per_page' => absint( 3 ), ); } $args = apply_filters( 'pure_portfolio_blog_section_args', $args ); pure_portfolio_render_blog_section( $args ); /** * Render Blog Section. */ function pure_portfolio_render_blog_section( $args ) { $section_title = get_theme_mod( 'pure_portfolio_blog_title', __( 'Recent News', 'impressive-portfolio' ) ); $section_text = get_theme_mod( 'pure_portfolio_blog_text', '' ); $post_button_label = get_theme_mod( 'pure_portfolio_excerpt_more_text', __( 'Read More', 'impressive-portfolio' ) ); $button_label = get_theme_mod( 'pure_portfolio_blog_button_label', __( 'View All', 'impressive-portfolio' ) ); $button_link = get_theme_mod( 'pure_portfolio_blog_button_link', '' ); $query = new WP_Query( $args ); if ( $query->have_posts() ) : ?> <section id="pure_portfolio_blog_section" class="pure-portfolio-frontpage-section pure-portfolio-blog-section blog-style-1"> <?php if ( is_customize_preview() ) : pure_portfolio_section_link( 'pure_portfolio_blog_section' ); endif; ?> <div class="ascendoor-wrapper"> <?php if ( ! empty( $section_title || $section_text ) ) { ?> <div class="section-header-subtitle"> <h3 class="section-title"><?php echo esc_html( $section_title ); ?></h3> <p class="section-subtitle"><?php echo esc_html( $section_text ); ?></p> </div> <?php } ?> <div class="pure-portfolio-section-body"> <div class="pure-portfolio-blog-section-wrapper"> <?php $i = 1; while ( $query->have_posts() ) : $query->the_post(); ?> <div class="pure-portfolio-blog-single wow fadeInUp" data-wow-delay="<?php echo esc_attr( $i * 200 ); ?>ms"> <div class="pure-portfolio-blog-img"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a> </div> <div class="pure-portfolio-detail"> <div class="pure-portfolio-meta"> <?php echo esc_html( get_the_date() ); ?> </div> <h3 class="pure-portfolio-blog-title"> <a class="magic-hover magic-hover__square" href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h3> <div class="pure-portfolio-description"> <?php echo wp_kses_post( wp_trim_words( get_the_content(), 30 ) ); ?> </div> <?php if ( ! empty( $post_button_label ) ) : ?> <div class="pure-portfolio-button pure-portfolio-readmore pure-portfolio-button-noborder-noalternate"> <a class="magic-hover magic-hover__square" href="<?php the_permalink(); ?>"><?php echo esc_html( $post_button_label ); ?></a> </div> <?php endif; ?> </div> </div> <?php $i++; endwhile; wp_reset_postdata(); ?> </div> <?php if ( ! empty( $button_label ) ) { ?> <div class="pure-portfolio-blog-view-all pure-portfolio-button"> <a class="magic-hover magic-hover__square" href="<?php echo esc_url( $button_link ); ?>"><?php echo esc_html( $button_label ); ?></a> </div> <?php } ?> </div> </div> </section> <?php endif; }