Skip to content

Instantly share code, notes, and snippets.

@dgoze
Forked from MWDelaney/acf-excerpt.php
Created July 24, 2024 18:12
Show Gist options
  • Save dgoze/dfa80e76653b6a292fd1c68004056c8a to your computer and use it in GitHub Desktop.
Save dgoze/dfa80e76653b6a292fd1c68004056c8a to your computer and use it in GitHub Desktop.
<?php
/**
* Set excerpt from ACF field
*/
add_action('acf/save_post', function($post_id) {
$post_excerpt = get_field( 'short_description', $post_id );
if ( ( !empty( $post_id ) ) AND ( $post_excerpt ) ) {
// Update post options array
$update_post_excerpt_args = array(
'ID' => $post_id,
'post_excerpt' => $post_excerpt,
);
wp_update_post( $update_post_excerpt_args );
}
}, 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment