Yoast\WP\SEO\User_Meta\Framework\Additional_Contactmethods
Instagram{}└─ Additional_Contactmethod_Interface
The Instagram contactmethod.
Хуков нет.
Использование
$Instagram = new Instagram(); // use class methods
Методы
- public get_key()
- public get_label()
Код Instagram{} Instagram{} Yoast 27.6
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' );
}
}