Yoast\WP\SEO\User_Meta\Framework\Additional_Contactmethods

Wikipedia{}Yoast 1.0

The Wikipedia contactmethod.

Хуков нет.

Использование

$Wikipedia = new Wikipedia();
// use class methods

Методы

  1. public get_key()
  2. public get_label()

Код 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>';
	}
}