Yoast\WP\SEO\User_Meta\Framework\Additional_Contactmethods

Instagram{}Yoast 1.0

The Instagram contactmethod.

Хуков нет.

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

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

Методы

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

Код Instagram{} Yoast 25.1

class Instagram implements Additional_Contactmethod_Interface {

	/**
	 * Returns the key of the Instagram contactmethod.
	 *
	 * @return string The key of the Instagram contactmethod.
	 */
	public function get_key(): string {
		return 'instagram';
	}

	/**
	 * Returns the label of the Instagram field.
	 *
	 * @return string The label of the Instagram field.
	 */
	public function get_label(): string {
		return \__( 'Instagram profile URL', 'wordpress-seo' );
	}
}