get( 'ThemeURI' ); $description = $theme_data->get( 'Description' ); $author = $theme_data->get( 'Author' ); $author_uri = $theme_data->get( 'AuthorURI' ); $version = $theme_data->get( 'Version' ); $tags = $theme_data->get( 'Tags' ); if ( $author_uri ) { $author_title = '' . $author . ''; } else { // author_uri not available $author_title = $author; } if ( ! empty( $tags ) ) { // yes, tags could miss sometimes $tags = implode( ', ', $tags ); } else { $tags = ""; } $item_info = '

' . __( 'Theme URL: ', 'rosa_txtd' ) . ' ' . $item_uri . '

' . __( 'Author: ', 'rosa_txtd' ) . $author_title . '

' . __( 'Version: ', 'rosa_txtd' ) . $version . '

' . $description . '

' . __( 'Tags: ', 'rosa_txtd' ) . $tags . '

'; if ( isset( $_GET['debug_mod'] ) && $_GET['debug_mod'] == "true" ) { $tabs['item_info'] = array( 'icon' => 'info-sign', 'icon_class' => '', 'title' => __( 'Theme Information', 'rosa_txtd' ), 'content' => $item_info ); } return $tabs;