Yoast\WP\SEO\User_Meta\Framework\Additional_Contactmethods
Wikipedia{}
The Wikipedia contactmethod.
Хуков нет.
Использование
$Wikipedia = new Wikipedia(); // use class methods
Методы
- public get_key()
- public get_label()
Код Wikipedia{} Wikipedia{} Yoast 25.0
class Wikipedia implements Additional_Contactmethod_Interface { /** * Returns the key of the Wikipedia contactmethod. * * @return string The key of the Wikipedia contactmethod. */ public function get_key(): string { return 'wikipedia'; } /** * Returns the label of the Wikipedia field. * * @return string The label of the Wikipedia field. */ public function get_label(): string { return \__( 'Wikipedia page about you', 'wordpress-seo' ) . '<br/><small>' . \__( '(if one exists)', 'wordpress-seo' ) . '</small>'; } }