hi @mofojofo,
You need to override the default template in your theme.
Eg:
add_filter( 'amp_post_template_file', 'pulse_amp_set_custom_tax_meta_template', 10, 3 );
function pulse_amp_set_custom_tax_meta_template( $file, $type, $post ) {
if ( 'footer' === $type ) {
$file = dirname( __FILE__ ) . '/templates/footer.php';
}
return $file;
}
Create a footer.php in templates folder inside your time and add markup to customize your footer
-
This reply was modified 7 years, 8 months ago by Suraj Air.