Skip to content

Instantly share code, notes, and snippets.

@atwellpub
Last active September 24, 2015 23:45
Show Gist options
  • Save atwellpub/245b4524d0a4a92dac0f to your computer and use it in GitHub Desktop.
Save atwellpub/245b4524d0a4a92dac0f to your computer and use it in GitHub Desktop.
Change cta render priority
<?php
add_filter('cta_the_content_priority', 'change_cta_priority' );
function change_cta_priority() {
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment