This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tabsData": { | |
"584215772": { | |
"_domain_fp_idlivemint.com/": { | |
"isBlocked": false, | |
"parsedCookie": { | |
"domain": ".livemint.com", | |
"expires": "2025-05-09T09:47:30.000Z", | |
"httpOnly": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* AMP Wordfence Compat plugin bootstrap. | |
* | |
* @package Google\AMP_Wordfence_Compat | |
* @author Weston Ruter, Google | |
* @license GPL-2.0-or-later | |
* @copyright 2020 Google Inc. | |
* | |
* @wordpress-plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Install the AMP Infinite Scroll Plugin and use the code snippet for your active theme. | |
* @link https://github.com/milindmore22/amp-infinite-scroll | |
*/ | |
/** | |
* Twenty Twenty One | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: AMP Legacy Theme CSS | |
* Plugin URI: https://amp-wp.org | |
* Description: Plugin add CSS to AMP Legacy theme. | |
* Version: 1 | |
* Requires at least: 5.6 | |
* Requires PHP: 7.4 | |
* Author: AMP Support | |
* Author URI: https://wpindia.co.in/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Web Stories amp-onerror Workaround plugin bootstrap. | |
* | |
* @package Google\Web_Stories_AMP_OnError_Workaround | |
* @author Pascal Birchler, Google | |
* @license GPL-2.0-or-later | |
* @copyright 2021 Google Inc. | |
* | |
* @wordpress-plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( | |
'wp', | |
function() { | |
add_action( 'amp_mobile_client_side_redirection', '__return_false' ); | |
if ( ! isset( $_GET['noamp'] ) && wp_is_mobile() && function_exists( 'is_amp_endpoint' ) && ! is_amp_endpoint() && function_exists( 'amp_is_available' ) && amp_is_available() ) { | |
wp_safe_redirect( esc_url( add_query_arg( 'amp', '1', get_permalink() ) ), 302 ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* AMP Local Storage. | |
* | |
* @package AMP_Local_Storage_Test | |
* @author Milind, rtCamp | |
* @license GPL-2.0-or-later | |
* @copyright 2020 rtCamp pvt. ltd. | |
* | |
* @wordpress-plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Local Storage Demo | |
* | |
* @requires AMP WordPress Plugin. | |
*/ | |
add_action( | |
'wp_head', | |
function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
window.addEventListener('load', () => { | |
const download_button = document.querySelectorAll( '.download-rt-whitepaper a' ); | |
download_button[0].click(); | |
}); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT count(*), post_type FROM `wp_posts` WHERE post_type IN( SELECT DISTINCT post_type wp_posts ) GROUP BY post_type ORDER BY `count(*)` DESC |
NewerOlder