Server IP : 213.35.126.208 / Your IP : 216.73.216.239 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux ust-wp1-prod 5.15.0-308.179.6.el8uek.x86_64 #2 SMP Wed Apr 23 10:46:57 PDT 2025 x86_64 User : tomasFtp ( 1007) PHP Version : 8.4.8 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lawjournal/public_html/wp-content/plugins/wordpress-seo/src/initializers/ |
Upload File : |
<?php namespace Yoast\WP\SEO\Initializers; use Automattic\WooCommerce\Utilities\FeaturesUtil; use Yoast\WP\SEO\Conditionals\No_Conditionals; /** * Declares compatibility with the WooCommerce HPOS feature. */ class Woocommerce implements Initializer_Interface { use No_Conditionals; /** * Hooks into WooCommerce. * * @return void */ public function initialize() { \add_action( 'before_woocommerce_init', [ $this, 'declare_custom_order_tables_compatibility' ] ); } /** * Declares compatibility with the WooCommerce HPOS feature. * * @return void */ public function declare_custom_order_tables_compatibility() { if ( \class_exists( FeaturesUtil::class ) ) { FeaturesUtil::declare_compatibility( 'custom_order_tables', \WPSEO_FILE, true ); } } }