Created
January 9, 2018 15:45
-
-
Save MWDelaney/1bb1710557096ab9697a3fc236f671c8 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
| <?php | |
| /** | |
| * Set "Featured Image" from ACF field | |
| */ | |
| add_action('acf/save_post', function($post_id) { | |
| $value = get_field('video_cover_image', $post_id); | |
| if($value != ''){ | |
| add_post_meta($post_id, '_thumbnail_id', $value); | |
| } | |
| return $value; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment