X7ROOT File Manager
Current Path:
/home/hamdjcne/public_html/wp-content/themes/hub/theme
home
/
hamdjcne
/
public_html
/
wp-content
/
themes
/
hub
/
theme
/
ðŸ“
..
📄
author-blog.php
(7.77 KB)
📄
category-blog.php
(7.79 KB)
📄
index.php
(26 B)
📄
liquid-blog.php
(7.71 KB)
📄
liquid-demo-config.php
(35.54 KB)
📄
liquid-dynamic-css.php
(83.93 KB)
📄
liquid-hooks.php
(63.5 KB)
📄
liquid-portfolio.php
(5.66 KB)
📄
liquid-register-plugins.php
(6.42 KB)
📄
liquid-responsive-css.php
(1.58 KB)
📄
liquid-scripts.php
(21.14 KB)
📄
liquid-setup.php
(2.59 KB)
📄
liquid-template-tags.php
(36.96 KB)
📄
liquid-vc-page-templates.php
(612.41 KB)
📄
liquid-vc-templates-panel-editor.php
(17.99 KB)
📄
liquid-vc-templates.php
(2.61 MB)
📄
liquid-walkers.php
(1.23 KB)
ðŸ“
metaboxes
ðŸ“
plugins
📄
search-blog.php
(7.77 KB)
📄
tag-blog.php
(7.82 KB)
ðŸ“
theme-options
Editing: liquid-portfolio.php
<?php /** * Liquid_ThemePortfolio class for portfolio posts page and portfolio archives */ class Liquid_ThemePortfolio extends LD_PortfolioListing { /** * [__construct description] * @method __construct */ public function __construct() { $this->atts = array( 'style' => liquid_helper()->get_option( 'portfolio-archive-style' ), 'horizontal_alignment' => liquid_helper()->get_option( 'portfolio-horizontal-alignment' ), 'vertical_alignment' => liquid_helper()->get_option( 'portfolio-vertical-alignment' ), 'grid_columns' => liquid_helper()->get_option( 'portfolio-grid-columns' ), 'columns_gap' => liquid_helper()->get_option( 'portfolio-columns-gap' ), 'bottom_gap' => liquid_helper()->get_option( 'portfolio-bottom-gap' ), 'enable_parallax' => ( liquid_helper()->get_option( 'portfolio-enable-parallax' ) ? '' : 'no' ), 'pagination' => 'pagination', 'css_animation' => 'none', 'disable_postformat' => 'yes', ); $this->render( $this->atts ); } /** * [render description] * @method render * @return [type] [description] */ public function render( $atts, $content = '' ) { extract( $atts ); // Locate the template and check if exists. $located = locate_template( array( "templates/portfolio/tmpl-$style.php" ) ); if ( ! $located ) { return; } $this->grid_id = $grid_id = uniqid( 'grid-'); //Container if ( class_exists( 'Liquid_Elementor_Addons' ) ){ echo '<div class="liquid-portfolio-list">'; } else { echo '<div class="liquid-portfolio-list ' . $this->get_id() . '">'; } $before = $after = ''; if( 'masonry-creative' === $style ) { printf( '<div id="%1$s" class="row liquid-portfolio-list-row %1$s" data-columns="%2$s" data-liquid-masonry="true" data-masonry-options=\'{ "layoutMode": "masonry", "alignMid": true }\'>', $this->grid_id, $grid_columns ); echo '<div class="col-md-4 col-sm-6 col-xs-12 grid-stamp creative-masonry-grid-stamp"></div>'; } else if ( $style === 'style05'){ echo '<div class="lqd-pf-carousel carousel-container carousel-nav-floated carousel-nav-center carousel-nav-middle carousel-nav-circle carousel-nav-solid carousel-nav-lg carousel-nav-shadowed carousel-dots-mobile-inside" data-filterable-carousel="true">'; echo '<div class="carousel-items pos-rel mx-0" data-lqd-flickity=\'{ "filters": "#' . $filter_id . '"' . $opt_counter .', "wrapAround": true, "groupCells": false, "prevNextButtons": true, "navOffsets": { "prev": 15, "next": 15 }, "prevNextButtonsOnlyOnMobile": true, "buttonsAppendTo": "self" }\'>'; echo '<div class="flickity-viewport pos-rel w-100 overflow-hidden">'; echo '<div class="flickity-slider d-flex w-100 h-100" style="left: 0; transform: translateX(0%);">'; } else { printf( '<div id="%1$s" class="row liquid-portfolio-list-row %1$s" data-liquid-masonry="true">', $this->grid_id ); } $this->add_excerpt_hooks(); while( have_posts() ): the_post(); $post_classes = array( 'lqd-pf-item', $this->get_item_classes() ); if ( $style === "style05" ){ $post_classes[] = "lqd-pf-item-style-5 lqd-pf-light pos-rel h-vh-100"; } $post_classes = join( ' ', get_post_class( $post_classes, get_the_ID() ) ); $attributes = array( 'id' => 'post-' . get_the_ID(), 'class' => $post_classes ); echo apply_filters( 'liquid_portfolio_before_post', $before ); include $located; echo apply_filters( 'liquid_portfolio_after_post', $after ); endwhile; $this->remove_excerpt_hooks(); if ( $style === 'style05'){ echo '</div>'; echo '</div>'; echo '</div>'; echo '</div>'; } echo '</div>'; // Pagination if( 'pagination' === $atts['pagination'] ) { // Set up paginated links. $links = paginate_links( array( 'type' => 'array', 'prev_next' => true, 'prev_text' => '<span aria-hidden="true">' . wp_kses_post( __( '<i class="lqd-icn-ess icon-ion-ios-arrow-back"></i>', 'hub' ) ) . '</span>', 'next_text' => '<span aria-hidden="true">' . wp_kses_post( __( '<i class="lqd-icn-ess icon-ion-ios-arrow-forward"></i>', 'hub' ) ) . '</span>' )); if( !empty( $links ) ) { printf( '<div class="page-nav"><nav aria-label="'. esc_attr__( 'Page navigation', 'hub' ) . '"><ul class="pagination"><li>%s</li></ul></nav></div>', join( "</li>\n\t<li>", $links ) ); } } if( in_array( $atts['pagination'], array( 'ajax', 'ajax2', 'ajax3', 'ajax4' ) ) && $url = get_next_posts_page_link( $GLOBALS['wp_query']->max_num_pages ) ) { $hash = array( 'ajax' => 'btn btn-md ajax-load-more', ); $attributes = array( 'href' => add_query_arg( 'ajaxify', '1', $url), 'rel' => 'nofollow', 'data-ajaxify' => true, 'data-ajaxify-options' => json_encode( array( 'wrapper' => '.liquid-portfolio-list .liquid-portfolio-list-row', 'items' => '> .masonry-item' )) ); echo '<div class="liquid-pf-nav ld-pf-nav-ajax"><div class="page-nav text-center"><nav aria-label="'. esc_attr__( 'Page navigation', 'hub' ) . '">'; switch( $atts['pagination'] ) { case 'ajax': $ajax_text = ! empty( $atts['ajax_text'] ) ? esc_html( $atts['ajax_text'] ) : esc_html__( 'Load more', 'hub' ); $attributes['class'] = 'ld-ajax-loadmore'; printf( '<a%2$s><span><span class="static">%1$s</span><span class="loading"><span class="dots"><span></span><span></span><span></span></span><span class="text-uppercase lts-sp-1">Loading</span></span><span class="all-loaded">All items loaded <i class="fa fa-check"></i></span></span></a>', $ajax_text, ld_helper()->html_attributes( $attributes ), $url ); break; } echo '</nav></div></div>'; } echo '</div>'; } } new Liquid_ThemePortfolio;
Upload File
Create Folder