The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| <?php | |
| /* | |
| Debug preview with custom fields | |
| Taken from: http://support.advancedcustomfields.com/forums/topic/preview-solution/ | |
| See also: http://support.advancedcustomfields.com/forums/topic/2nd-every-other-post-preview-throws-notice/ | |
| */ | |
| add_filter('_wp_post_revision_fields', 'add_field_debug_preview'); | |
| function add_field_debug_preview($fields){ | |
| $fields["debug_preview"] = "debug_preview"; | |
| return $fields; |