XylotrechusZ
<?php
if ( ! function_exists( 'rs_get_cf7_forms' ) ) {
/**
* Get a list of all CF7 forms
*
* @return array
*/
function rs_get_cf7_forms() {
$forms = get_posts( [
'post_type' => 'wpcf7_contact_form',
'post_status' => 'publish',
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC',
] );
if ( ! empty( $forms ) ) {
return wp_list_pluck( $forms, 'post_title', 'ID' );
}
return [];
}
}