Astra_Ext_White_Label_Markup::theme_author_callback( array $args )
Filter to update Theme Author Link
Description
Parameters
- $args
-
(array) (Required) Theme Author Detail Array.
Return
(array)
Source
File: classes/class-astra-ext-white-label-markup.php
public function theme_author_callback( $args ) {
if ( false !== self::get_whitelabel_string( 'astra', 'name', false ) ) {
$args['theme_name'] = self::get_whitelabel_string( 'astra', 'name', false );
}
if ( false !== self::astra_pro_whitelabel_author_url() ) {
$args['theme_author_url'] = self::astra_pro_whitelabel_author_url();
}
return $args;
}
Expand full source code Collapse full source code View on Trac