/wp-content/plugins/wordpress-seo/admin/config-ui/fields/class-field-title-intro.php
https://bitbucket.org/carloskikea/helpet · PHP · 29 lines · 13 code · 5 blank · 11 comment · 0 complexity · baa61f4ba9664a844805444e06d20d03 MD5 · raw file
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\ConfigurationUI
- */
- /**
- * Class WPSEO_Config_Field_Title_Intro
- */
- class WPSEO_Config_Field_Title_Intro extends WPSEO_Config_Field {
- /**
- * WPSEO_Config_Field_Social_Profiles_Intro constructor.
- */
- public function __construct() {
- parent::__construct( 'titleIntro', 'HTML' );
- $html = __( 'On this page, you can change the name of your site and choose which
- separator to use. The separator will display, for instance, between your
- post title and site name. Symbols are shown in the size they\'ll appear in
- the search results. Choose the one that fits your brand best or takes up
- the least space in the snippets.', 'wordpress-seo' );
- $html = '<p>' . esc_html( $html ) . '</p>';
- $this->set_property( 'html', $html );
- }
- }