HEX
Server: Apache/2.4.38 (Debian)
System: Linux host457 5.14.0-4-amd64 #1 SMP Debian 5.14.16-1 (2021-11-03) x86_64
User: www-data (33)
PHP: 7.4.21
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/vhosts/harpoeditore.it/httpdocs/wp-content/themes/mindig/theme/templates/footer/copyright.php
<?php 
/**
 * Your Inspiration Themes
 * 
 * In this files there is a collection of a functions useful for the core
 * of the framework.   
 * 
 * @package WordPress
 * @subpackage Your Inspiration Themes
 * @author Your Inspiration Themes Team <info@yithemes.com>
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
include_once( YIT_THEME_ASSETS_PATH . '/lib/Walker_Nav_Menu_Div.php' );

$footer_type = apply_filters( 'yit_footer_type', yit_get_option( 'footer-type' ) );

if ( $footer_type == 'centered' || $footer_type == 'big-centered' ) : ?>
    <?php do_action( 'yit_before_center_copyright' ) ?>
    <div class="centered">
        <?php
        $nav_args = array(
            'theme_location' => 'copyright_centered',
            'container' => 'none',
            'menu_class' => 'level-1 clearfix',
            'fallback_cb' => false,
            'depth' => 1,
        );

        if ( has_nav_menu( 'copyright_centered' ) )
            $nav_args['walker'] = new YIT_Walker_Nav_Menu_Div();

        wp_nav_menu( $nav_args );
        ?>
        <?php echo yit_convert_tags( yit_addp( stripslashes( yit_ssl_url( yit_get_option( 'footer-center-text' ) ) ) ) ) ?>


    </div>
    <?php do_action( 'yit_after_center_copyright' ) ?>
<?php else : ?>
    <?php do_action( 'yit_before_left_copyright' ) ?>
    <div class="left col-sm-6">
        <?php echo yit_convert_tags( yit_addp( stripslashes( yit_ssl_url( yit_get_option( 'footer-left-text' ) ) ) ) ) ?>
        <?php
        $nav_args = array(
            'theme_location' => 'copyright_left',
            'container' => 'none',
            'fallback_cb' => false,
            'menu_class' => 'level-1 clearfix',
            'depth' => 1,
        );

        if ( has_nav_menu( 'copyright_left' ) )
            $nav_args['walker'] = new YIT_Walker_Nav_Menu_Div();

        wp_nav_menu( $nav_args );
        ?>

    </div>
    <?php do_action( 'yit_after_left_copyright' ) ?>
    <div class="right col-sm-6">
        <?php echo yit_convert_tags( yit_addp( stripslashes( yit_ssl_url( yit_get_option( 'footer-right-text' ) ) ) ) ) ?>
        <?php
        $nav_args = array(
            'theme_location' => 'copyright_right',
            'container' => 'none',
            'fallback_cb' => false,
            'menu_class' => 'level-1 clearfix',
            'depth' => 1,
        );

        if ( has_nav_menu( 'copyright_right' ) )
            $nav_args['walker'] = new YIT_Walker_Nav_Menu_Div();

        wp_nav_menu( $nav_args );
        ?>
    </div>
    <?php do_action( 'yit_after_right_copyright' ) ?>
<?php endif ?>