Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/walla3t.corals.io/wp-content/themes/apper/partials/footer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/walla3t.corals.io/wp-content/themes/apper/partials/footer/copyright.php
<?php
/**
 * The default template for displaying the footer copyright
 *
 * @package Apper WordPress theme
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$settings = acmthemes_settings();

//return if hide footer copyright is set true
if( isset( $settings['hide_footer_copyright'] ) && ! empty( $settings['hide_footer_copyright'] ) )
  return;

//left column copyright text
$copy = isset($settings['footer_copyright_text']) ? $settings['footer_copyright_text'] :
esc_html__( 'Copyright', 'apper' ) . ' ' . date('Y') . ' ' . get_bloginfo('name')  . '. ' . esc_html__( 'All Rights Reserved.', 'apper' );

//right column
$right_col_content = isset( $settings['right_col_content'] ) ? $settings['right_col_content'] : '';

// Inner classes
$wrap_classes = array( 'clr' );
if( empty( $right_col_content ) )
	$wrap_classes[] = 'no-right-content';

$wrap_classes = implode( ' ', $wrap_classes ); ?>

<?php do_action( 'before_footer_bottom' ); ?>

<div id="footer-bottom" class="<?php echo esc_attr( $wrap_classes ); ?>">

	<?php do_action( 'before_footer_bottom_inner' ); ?>

	<div id="footer-bottom-inner" class="container clr">

		<?php
		// Display footer bottom menu if location is defined
		if ( $right_col_content ) : ?>

			<div id="footer-bottom-menu" class="navigation clr">

				<div class="right-col-content clr" role="contentinfo">
					<?php echo wp_kses_post( do_shortcode( $right_col_content ) ); ?>
				</div><!-- #copyright -->

			</div><!-- #footer-bottom-menu -->

		<?php endif; ?>

		<?php
		// Display copyright info
		if ( $copy ) : ?>

			<div id="copyright" class="clr" role="contentinfo">
				<?php echo wp_kses_post( do_shortcode( $copy ) ); ?>
			</div><!-- #copyright -->

		<?php endif; ?>

	</div><!-- #footer-bottom-inner -->

	<?php do_action( 'after_footer_bottom_inner' ); ?>

</div><!-- #footer-bottom -->

<?php do_action( 'after_footer_bottom' ); ?>

Spamworldpro Mini