Changes between Initial Version and Version 6 of Ticket #33858
- Timestamp:
- 09/22/2015 10:56:23 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33858
- Property Keywords reporter-feedback close added
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
worksforme
-
Property
Milestone
changed from
Awaiting Review
to
-
Ticket #33858 – Description
initial v6 3 3 4 4 {{{ 5 5 add_filter( 'option', 'acf_options_page' ); 6 6 7 8 9 10 7 function acf_options_page( $value, $option, $default ) { 8 if ( $default == false ) { 9 return get_field( $option, 'option' ); 10 } 11 11 12 13 12 return $value; 13 } 14 14 15 15 16 16 get_option( 'field_from_acf' ); 17 17 }}}