' . get_option( 'blogname' ) . '', $output );
$theme_author = apply_filters( 'ast_theme_author', array(
'theme_name' => __( 'Astra', 'astra-theme' ),
'theme_author_url' => 'https://www.brainstormforce.com/',
) );
$output = str_replace( '[theme_author]', '' . esc_attr( $theme_author['theme_name'] ) . '', $output );
return do_shortcode( $output );
}
/**
* Render Partial Footer Section 2 Credit
*/
static function _render_footer_sml_section_2_credit() {
$options = Ast_Theme_Options::get_options();
$output = $options['footer-sml-section-2-credit'];
$output = str_replace( '[current_year]', date( 'Y' ), $output );
$output = str_replace( '[site_title]', '', $output );
$theme_author = apply_filters( 'ast_theme_author', array(
'theme_name' => __( 'Astra', 'astra-theme' ),
'theme_author_url' => 'https://www.brainstormforce.com/',
) );
$output = str_replace( '[theme_author]', '' . esc_attr( $theme_author['theme_name'] ) . '', $output );
return do_shortcode( $output );
}
}
}// End if().
/**
* Kicking this off by calling 'get_instance()' method
*/
$ast_customizer_partials = AST_Customizer_Partials::get_instance();