Skip to content

Instantly share code, notes, and snippets.

@pickplugins
Created April 15, 2020 18:47
Show Gist options
  • Select an option

  • Save pickplugins/5c3c4cf2241386106cbceb1c287ee2e9 to your computer and use it in GitHub Desktop.

Select an option

Save pickplugins/5c3c4cf2241386106cbceb1c287ee2e9 to your computer and use it in GitHub Desktop.
function post_grid_item_post_permalink_20200416($link){
$post_id = get_the_id();
$download_url = get_field( "download_url", $post_id );
$link = !empty($download_url) ? $download_url : $link;
return $link;
}
add_filter('post_grid_item_post_permalink','post_grid_item_post_permalink_20200416');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment