| Server IP : 5.129.245.98 / Your IP : 216.73.217.19 Web Server : Apache/2.4.66 (Debian) System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/seo-by-rank-math/includes/frontend/paper/ |
Upload File : |
<?php
/**
* The Paper Interface
*
* @since 1.0.22
* @package RankMath
* @subpackage RankMath\Paper
* @author Rank Math <support@rankmath.com>
*/
namespace RankMath\Paper;
defined( 'ABSPATH' ) || exit;
/**
* Paper interface.
*/
interface IPaper {
/**
* Retrieves the SEO title.
*
* @return string
*/
public function title();
/**
* Retrieves the SEO description.
*
* @return string
*/
public function description();
/**
* Retrieves the robots.
*
* @return string
*/
public function robots();
/**
* Retrieves the advanced robots.
*
* @return array
*/
public function advanced_robots();
/**
* Retrieves the canonical URL.
*
* @return array
*/
public function canonical();
/**
* Retrieves the keywords.
*
* @return string The focus keywords.
*/
public function keywords();
}