You appear to be a bot. Output may be restricted Description Retrieves the main instance. Usage $Main = YoastSEO(); Parameters Returns Main The main instance. Source File name: wordpress-seo/src/functions.php Lines: 1 to 13 of 13 function YoastSEO() { // phpcs:enable static $main; if ( $main === null ) { $main = new Main(); $main->load(); } return $main; } View on GitHub View on Trac