| Server IP : 172.67.201.108 / Your IP : 216.73.216.37 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/mommybites/wp-content/plugins/fb-instant-articles/ |
Upload File : |
<?php
/**
* Facebook Instant Articles for WP.
* This source code is licensed under the license found in the
* LICENSE file in the root directory of this source tree.
*
* @package default
*/
// Load compat layer for Co-Authors Plus.
if ( function_exists( 'get_coauthors' ) && ! defined( 'CAP_IA_COMPAT' ) ) {
include( dirname( __FILE__ ) . '/compat/class-instant-articles-co-authors-plus.php' );
$cap = new Instant_Articles_Co_Authors_Plus;
$cap->init();
}
// Load compat layer for Yoast SEO.
if ( defined( 'WPSEO_VERSION' ) && ! defined( 'WPSEO_IA_COMPAT' ) ) {
include( dirname( __FILE__ ) . '/compat/class-instant-articles-yoast-seo.php' );
$yseo = new Instant_Articles_Yoast_SEO;
$yseo->init();
}
// Load support for Google Analytics for WordPress by MonsterInsights.
if ( ( defined( 'GAWP_VERSION' ) || function_exists( 'MonsterInsights' ) ) && ! defined( 'GAWP_IA_COMPAT' ) ) {
include( dirname( __FILE__ ) . '/compat/class-instant-articles-google-analytics-for-wordpress.php' );
$gawp = new Instant_Articles_Google_Analytics_For_WordPress;
$gawp->init();
}
// Load support for Google Tag Manager for WordPress by Duracelltomi.
if ( defined( 'GTM4WP_VERSION' ) ) {
include( dirname( __FILE__ ) . '/compat/class-instant-articles-gtm4wp.php' );
$gtm4wp = new Instant_Articles_Google_Tag_Manager_For_WordPress;
$gtm4wp->init();
}
// Load support for Jetpack
if ( defined( 'JETPACK__VERSION' ) ) {
include( dirname( __FILE__ ) . '/compat/class-instant-articles-jetpack.php' );
$jp = new Instant_Articles_Jetpack;
$jp->init();
}
// Load support for Get The Image plugin
if ( function_exists( 'get_the_image' ) ) {
include( dirname( __FILE__ ) . '/compat/class-instant-articles-get-the-image.php' );
$gti = new Instant_Articles_Get_The_Image;
$gti->init();
}
// Load support for Playbuzz plugin by default #515
include( dirname( __FILE__ ) . '/compat/class-instant-articles-playbuzz.php' );
$playbuzz = new Instant_Articles_Playbuzz;
$playbuzz->init();
// Load support for Apester's plugin Medias
include( dirname( __FILE__ ) . '/compat/class-instant-articles-apester.php' );
$apester = new Instant_Articles_Apester;
$apester->init();
// Load support for Comscore
include( dirname( __FILE__ ) . '/compat/class-instant-articles-comscore.php' );
$comscore = new Instant_Articles_Comscore;
$comscore->init();