Skip to content

Instantly share code, notes, and snippets.

View haveigonemental's full-sized avatar

Benjamin Daniel haveigonemental

View GitHub Profile
@haveigonemental
haveigonemental / sync_acf_post_title.php
Last active July 19, 2020 00:03 — forked from rveitch/sync_acf_post_title.php
Update WordPress post title from an ACF field value on save. (Advanced Custom Fields)
<?php
/**
* Update Custom Post Title from an ACF field value on post save.
*
* Triggers on save, edit or update of published posts.
* Works in "Quick Edit", but not bulk edit.
*/
function sync_acf_post_title($post_id) {
$post_type = get_post_type($post_id);
if($post_type === "custom_post_type") {