Hello, thanks for the great plugin.
I have problems with new version 0.9.9.8 my fields are not updating after the first save. I’ve tried clean install and I don’t have any plugins installed. If I manually delete post meta in database I can again save fields but can’t update them. When I use the previous version 0.9.4.30 it updates without problems.
Thanks for help.
Wordpress 4.5.2
<?php
/*
Title: Dodatkowe pola na stronie głównej
Post Type: page
Template: front-page
*/
piklist('field', array(
'type' => 'textarea'
,'field' => 'front_head'
,'label' => 'Sekcja head'
,'description' => 'Head glownej'
,'attributes' => array(
'rows' => 10
,'cols' => 50
,'class' => 'large-text'
)
));
piklist('field', array(
'type' => 'textarea'
,'field' => 'front_specialisation'
,'label' => 'Sekcja 1'
,'description' => 'Dodatkowy tekst - specjalizacje'
,'attributes' => array(
'rows' => 10
,'cols' => 50
,'class' => 'large-text'
)
));