![]() 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/gg.corals.io/wp-content/themes/bugster/templates/ |
<?php /** * The template to display the copyright info in the footer * * @package WordPress * @subpackage BUGSTER * @since BUGSTER 1.0.10 */ // Copyright area ?> <div class="footer_copyright_wrap <?php if ( ! bugster_is_inherit( bugster_get_theme_option( 'copyright_scheme' ) ) ) { echo ' scheme_' . esc_attr( bugster_get_theme_option( 'copyright_scheme' ) ); } ?> "> <div class="footer_copyright_inner"> <div class="content_wrap"> <div class="copyright_text"> <?php $bugster_copyright = bugster_get_theme_option( 'copyright' ); if ( ! empty( $bugster_copyright ) ) { // Replace {{Y}} or {Y} with the current year $bugster_copyright = str_replace( array( '{{Y}}', '{Y}' ), date( 'Y' ), $bugster_copyright ); // Replace {{...}} and ((...)) on the <i>...</i> and <b>...</b> $bugster_copyright = bugster_prepare_macros( $bugster_copyright ); // Display copyright echo wp_kses( nl2br( $bugster_copyright ), 'bugster_kses_content' ); } ?> </div> </div> </div> </div>