this string has no description
0
functions.php
22 lines 549 B view raw
1add_filter('acf/save_post', acf_save_post, 10, 1); 2 3function acf_save_post($post_id) { 4 $new_post = get_post($post_id); 5 if (!($new_post instanceof WP_Post)) { 6 return; 7 } 8 if (!have_rows('modules', $post_id)) { 9 return; 10 } 11 ob_start(); 12 global $post; 13 $post = $new_post; 14 setup_postdata($post); 15 get_template_part('includes/modules', null, array('save' => true)); 16 $html = ob_get_contents(); 17 ob_end_clean(); 18 wp_reset_postdata(); 19 $post = get_post($post_id); 20 $post->post_content = $html; 21 wp_update_post($post, [], false); 22}