📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 05:54:35
📂
/ (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: AMP.php
Writable
<?php namespace SlimSEO\Integrations; class AMP { private $schema; public function __construct( $schema ) { $this->schema = $schema; } public function setup() { add_action( 'amp_post_template_footer', [ $this->schema, 'output' ] ); add_action( 'amp_post_template_head', [ $this, 'remove_default_amp_schema' ], 9 ); } public function remove_default_amp_schema() { remove_action( 'amp_post_template_head', 'amp_print_schemaorg_metadata' ); } }
💾 Save Changes
❌ Cancel