Skip to content

Instantly share code, notes, and snippets.

@patrickposner
Created April 30, 2024 09:13
Show Gist options
  • Save patrickposner/a5f1e2b73070f96b7902b960d3f25892 to your computer and use it in GitHub Desktop.
Save patrickposner/a5f1e2b73070f96b7902b960d3f25892 to your computer and use it in GitHub Desktop.
Replace URLs in atom elements
<?php
add_filter( 'ss_match_tags', function ( $match_tags ) {
$match_tags['atom'] = array( 'href' );
return $match_tags;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment