Server IP : 104.21.64.1 / Your IP : 216.73.216.94 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wordpress-seo/src/services/health-check/ |
Upload File : |
<?php namespace Yoast\WP\SEO\Services\Health_Check; /** * Runs the Page_Comments health check. */ class Page_Comments_Runner implements Runner_Interface { /** * Is set to true when comments are set to display on a single page. * * @var bool */ private $comments_on_single_page; /** * Constructor. */ public function __construct() { $this->comments_on_single_page = false; } /** * Runs the health check. Checks if comments are displayed on a single page. * * @return void */ public function run() { $this->comments_on_single_page = \get_option( 'page_comments' ) !== '1'; } /** * Returns true if comments are displayed on a single page. * * @return bool True if comments are displayed on a single page. */ public function is_successful() { return $this->comments_on_single_page; } }