D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
homehopshortterm
/
public_html
/
wp-content
/
plugins
/
pixwell-core
/
amp
/
Filename :
helpers.php
back
Copy
<?php /** Don't load directly */ defined( 'ABSPATH' ) || exit; include_once PIXWELL_CORE_PATH . 'amp/parts/parts.php'; include_once PIXWELL_CORE_PATH . 'amp/parts/modules.php'; add_action( 'get_header', 'pixwell_get_amp_header', PHP_INT_MAX ); add_action( 'get_footer', 'pixwell_get_amp_footer', PHP_INT_MAX ); add_filter( 'the_content', 'pixwell_amp_add_inline_ad', 20 ); if ( ! function_exists( 'pixwell_get_amp_header' ) ) { function pixwell_get_amp_header() { if ( pixwell_is_amp() ) { $template = PIXWELL_CORE_PATH . 'amp/templates/header.php'; if ( file_exists( $template ) ) { load_template( $template ); } return; } } } if ( ! function_exists( 'pixwell_get_amp_footer' ) ) { function pixwell_get_amp_footer() { if ( pixwell_is_amp() ) { $template = PIXWELL_CORE_PATH . 'amp/templates/footer.php'; if ( file_exists( $template ) ) { load_template( $template ); } return; } } }