Skip to content

Instantly share code, notes, and snippets.

@DumahX
Last active May 13, 2022 19:15
Show Gist options
  • Save DumahX/0445f657bdbb032e938828539e614f3d to your computer and use it in GitHub Desktop.
Save DumahX/0445f657bdbb032e938828539e614f3d to your computer and use it in GitHub Desktop.
<?php
/*
INSTRUCTIONS FOR THIS CODE:
On your RSS URL in Aweber add &allow_aweber=true to the end of it.
Then copy the below code and paste it into a plugin like My Custom Functions or Code Snippets on your site.
This will allow Aweber through the content blocks.
*/
function allow_aweber_through($block, $post, $uri) {
if(isset($_GET['allow_aweber'])) {
$block = false;
}
return $block;
}
add_filter('mepr-pre-run-rule-content', 'allow_aweber_through', 11, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment