You appear to be a bot. Output may be restricted
Description
Checks if this web page is an AMP URL.
Usage
$bool = genesis_is_amp();
Parameters
Returns
bool true
if AMP URL; else `false`.
Source
File name: genesis/lib/functions/general.php
Lines:
1 to 11 of 11
function genesis_is_amp() { // If the AMP plugin is not installed, bail out and return `false`. if ( ! function_exists( 'is_amp_endpoint' ) ) { return false; } return is_amp_endpoint(); }