Select Page

Programatic ACF Locations

Now i am using ACF for front end forms a lot more i needed to show the same form with different fields based on location add_filter('acf/get_field_group', 'my_change_field_group'); function my_change_field_group($group) { $pid = get_the_ID(); if ( $pid == 2218...

Add Post id to post title via ACFE Form

When creating posts via a ACFE Form in order to have unique titles i like to use the post id but this leave me with a bit of a cart before the horse situation how can i add the id when the Post hasn’t been created thankfully ACFE has a hook for that:  ...
Preloader