📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 09:21:56
📂
/ (Root)
/
home
/
xeqi7597
/
cds.claireduwig.com
/
wp-content
/
plugins
/
slim-seo
/
src
/
Integrations
📍 /home/xeqi7597/cds.claireduwig.com/wp-content/plugins/slim-seo/src/Integrations
🔄 Refresh
✏️
Editing: WPForo.php
Writable
<?php namespace SlimSEO\Integrations; use SlimSEO\MetaTags\Hook; class WPForo { private $hook; public function __construct( Hook $hook ) { $this->hook = $hook; } public function is_active(): bool { return defined( 'WPFORO_VERSION' ); } public function setup(): void { add_action( 'template_redirect', [ $this, 'process' ] ); } public function process(): void { if ( wpforo_setting( 'seo', 'seo_meta' ) && is_wpforo_page() ) { $this->hook->remove(); } } }
💾 Save Changes
❌ Cancel