' . get_bloginfo( 'name' ) . '', $output ); $theme_author = apply_filters( 'astra_theme_author', array( 'theme_name' => __( 'Astra', 'astra' ), 'theme_author_url' => 'http://wpastra.com/', ) ); $output = str_replace( '[theme_author]', '' . esc_html( $theme_author['theme_name'] ) . '', $output ); return do_shortcode( $output ); } /** * Render Partial Footer Section 2 Credit */ static function _render_footer_sml_section_2_credit() { $site_credit = astra_get_option( 'footer-sml-section-2-credit' ); $output = str_replace( '[current_year]', date_i18n( __( 'Y', 'astra' ) ), $site_credit ); $output = str_replace( '[site_title]', '' . get_bloginfo( 'name' ) . '', $output ); $theme_author = apply_filters( 'astra_theme_author', array( 'theme_name' => __( 'Astra', 'astra' ), 'theme_author_url' => 'http://wpastra.com/', ) ); $output = str_replace( '[theme_author]', '' . esc_html( $theme_author['theme_name'] ) . '', $output ); return do_shortcode( $output ); } } }// End if(). /** * Kicking this off by calling 'get_instance()' method */ Astra_Customizer_Partials::get_instance();