...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alasaweborg/public_html/wp-content/themes/greenture/ |
Upload File : |
<?php
/**
* Template Name: Parallax Page
*
* Parallax page template displays all sections from menu
*
* @package greenture
*/
get_header(); ?>
<div id="single-sidebar-container" class="single-sidebar-container parallax-flat">
<div id="primary" class="content-area">
<div id="content" class="site-content">
<?php if( is_page_template( 'template-parallax.php' ) ) {
$main_query = '';
/* Check for primary navigation */
if ( has_nav_menu( 'primary-menu' ) ) {
$page_query = greenture_parallax_front_query();
/* Do not run query if no parallax sections are assigned to the menu */
if( !empty( $page_query ) ) {
$main_query = new WP_Query( $page_query );
}
}
$front_page_id = get_option('page_on_front');
if( is_object($main_query) ) {
if ( $main_query->have_posts() ):
while ( $main_query->have_posts() ): $main_query->the_post();
$post = greenture_get_global_var( 'post' );
$backup = $post;
$post_id = get_the_ID();
if( $front_page_id != $post_id ) {
$additional_sections_order = get_post_meta( $post_id, 'greenture_parallax_additional_sections_order', true );
get_template_part('template-parallax-page');
}
if( $additional_sections_order != '' ) {
$additional_query = greenture_parallax_additional_query( $additional_sections_order );
if( !empty( $additional_query ) ) {
$custom_query = new WP_Query( $additional_query );
}
if ( $custom_query->have_posts() ):
while ( $custom_query->have_posts() ): $custom_query->the_post();
$additional_post_id = get_the_ID();
if( $front_page_id != $additional_post_id ) {
get_template_part('template-parallax-page');
}
endwhile;
endif;
wp_reset_postdata();
}
$post = $backup; ?>
<?php endwhile;
endif;
}
wp_reset_postdata();
} ?>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- #single-sidebar-container -->
<?php get_footer(); ?>