Skip to content

Instantly share code, notes, and snippets.

View badfeather's full-sized avatar

Brad Thomason badfeather

View GitHub Profile
@johnregan3
johnregan3 / wp-amp-tutorial-primary-nav.php
Last active February 13, 2019 16:39
Adding a Primary Navigation Menu to an AMP WordPress Theme
<?php
/**
* Register the amp-sidebar component script with WP AMP.
*
* This goes in your amp.php
*/
function jr3_amp_sidebar_component_script( $data ) {
$data['amp_component_scripts']['amp-sidebar'] = 'https://cdn.ampproject.org/v0/amp-sidebar-0.1.js';
return $data;
}