You appear to be a bot. Output may be restricted
Description
Adds a text to the bottom of the Site Health check to indicate it is a Yoast SEO Site Health Check.
Usage
WPSEO_Health_Check::add_yoast_signature();
Parameters
Returns
void
Source
File name: wordpress-seo/inc/health-check.php
Lines:
1 to 10 of 10
protected function add_yoast_signature() { $this->actions .= sprintf( /* translators: 1: Start of a paragraph beginning with the Yoast icon, 2: Expands to 'Yoast SEO', 3: Paragraph closing tag. */ esc_html__( '%1$sThis was reported by the %2$s plugin%3$s', 'wordpress-seo' ), '<p class="yoast-site-health__signature"><img src="' . esc_url( plugin_dir_url( WPSEO_FILE ) . 'images/Yoast_SEO_Icon.svg' ) . '" alt="" height="20" width="20" class="yoast-site-health__signature-icon">', 'Yoast SEO', '</p>' ); }