Skip to content

Instantly share code, notes, and snippets.

@patrickposner
Created June 23, 2022 09:21
Show Gist options
  • Save patrickposner/7e4e0fe70ab8b5fdd4efee4df4ab9784 to your computer and use it in GitHub Desktop.
Save patrickposner/7e4e0fe70ab8b5fdd4efee4df4ab9784 to your computer and use it in GitHub Desktop.
Fix canoncials on Simply Static exported static website
<?php
add_filter('ss_match_tags', function( $match_tags ) {
$match_tags['link'] = array( 'href' );
return $match_tags;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment