Created
April 15, 2020 18:47
-
-
Save pickplugins/5c3c4cf2241386106cbceb1c287ee2e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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