This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is how I listed the forms in Piklist Select Option below: | |
| $args = array('post_type' => 'wpcf7_contact_form', 'posts_per_page' => -1); | |
| $cf7Forms = get_posts( $args ); | |
| // $post_ids = wp_list_pluck( $cf7Forms , 'ID' ); | |
| $form_titles = wp_list_pluck( $cf7Forms , 'post_title' ); | |
| piklist('field', array( | |
| 'type' => 'group' | |
| ,'field' => 'contact_form' |