array( 'href' => array(), 'target' => array( '_blank' ), ), ); /** * WPSEO_Config_Field_Upsell_Site_Review constructor. */ public function __construct() { parent::__construct( 'upsellSiteReview', 'HTML' ); $upsell_text = sprintf( /* translators: %1$s will be a link to a review explanation page. Text between %2$s and %3$s will be a link to an SEO copywriting course page. */ __( 'If you want more help creating awesome content, check out our %2$sSEO copywriting course%3$s. Do you want to know all about the features of the plugin, consider doing our %1$s!', 'wordpress-seo' ), 'Yoast SEO for WordPress training', '', '' ); $html = '
' . wp_kses( $upsell_text, $this->allowed_html ) . '
'; $this->set_property( 'html', $html ); } }