This file contains hidden or 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
<amp-analytics type="googleanalytics" id="analytics1"> | |
<script type="application/json"> | |
{ | |
"vars": { | |
"account": "UA-XXXXX-Y" | |
}, | |
"triggers": { | |
"trackPageview": { | |
"on": "visible", | |
"request": "pageview" |
This file contains hidden or 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
add_action( 'amp_post_template_head', 'amp_post_template_add_analytics_js' ); | |
function amp_post_template_add_analytics_js( $amp_template ) { | |
$post_id = $amp_template->get( 'post_id' ); | |
?> | |
<script async custom-element="amp-analytics" src="https://cdn.ampproject.org/v0/amp-analytics-0.1.js"></script> | |
<?php | |
} | |
add_action( 'amp_post_template_footer', 'xyz_amp_add_analytics' ); | |
function xyz_amp_add_analytics( $amp_template ) { | |
$post_id = $amp_template->get( 'post_id' ); |
This file contains hidden or 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
//Create Paginated loop for CPT 'getuigenissen' | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
add_action('genesis_loop', 'getuigenissen_loop'); | |
function getuigenissen_loop(){ | |
$args = array( | |
'posts_per_page' => 1, | |
'post_type' => 'getuigenissen', |