Skip to content

Instantly share code, notes, and snippets.

View TXChetG's full-sized avatar

TXChetG

View GitHub Profile
@azizultex
azizultex / Getting All Contact Form 7 Forms in a Select Option and Showing Selected Form Anywhere Wordpress
Created February 25, 2015 15:20
Getting All Contact Form 7 Forms in a Select Option and Showing Selected Form Anywhere Wordpress
// 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'