Viewing 1 replies (of 1 total)
  • $args = array('post_type' => 'wpcf7_contact_form', 'posts_per_page' => -1);
    if( $cf7Forms = get_posts( $args ) ){
    	foreach($cf7Forms as $cf7Form){
    		echo(do_shortcode('[contact-form-7 id="'.$cf7Form->ID.'" title="'.($cf7Form->post_title).'"]'));
    	}
    }

    Just had to figure this one out on my own; should work for you too, or for whoever else comes across this looking for answers. ??

Viewing 1 replies (of 1 total)
  • The topic ‘Get all Contact Form 7 forms available’ is closed to new replies.