File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.15.1] - 2019-02-19
8+
9+ ### Changed
10+ - Moved the field registration from ` acf/init ` back to ` wp_loaded ` as it apparently causes problems in some cases.
11+
712## [ 1.15.0] - 2019-02-18
813
914### Added
Original file line number Diff line number Diff line change 33Plugin Name: ACF Codifier
44Plugin URI: https://github.com/devgeniem/acf-codifier
55Description: A helper class to make defining ACF field groups and fields easier in the code.
6- Version: 1.15.0
6+ Version: 1.15.1
77Author: Miika Arponen / Geniem Oy
88Author URI: https://geniem.fi
99License: GPL-3.0
Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ public function deactivate() {
481481 */
482482 public function register () {
483483 if ( function_exists ( 'acf_add_local_field_group ' ) ) {
484- \add_action ( 'acf/init ' , function () {
484+ \add_action ( 'wp_loaded ' , function () {
485485 $ exported = $ this ->export ( true );
486486
487487 \acf_add_local_field_group ( $ exported );
You can’t perform that action at this time.
0 commit comments