Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/wordpress-seo/src/user-meta/framework/custom-meta/ |
Upload File : |
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong namespace Yoast\WP\SEO\User_Meta\Framework\Custom_Meta; use Yoast\WP\SEO\User_Meta\Domain\Custom_Meta_Interface; /** * The Author_Title custom meta. */ class Author_Title implements Custom_Meta_Interface { /** * Returns the db key of the Author_Title custom meta. * * @return string The db key of the Author_Title custom meta. */ public function get_key(): string { return 'wpseo_title'; } /** * Returns the id of the custom meta's form field. * * @return string The id of the custom meta's form field. */ public function get_field_id(): string { return 'wpseo_author_title'; } /** * Returns whether the custom meta is allowed to be empty. * * @return bool Whether the custom meta is allowed to be empty. */ public function is_empty_allowed(): bool { return true; } }