| Current Path : /home/goldnueh/public_html/wp-content/plugins/rt-elements/inc/ |
| Current File : //home/goldnueh/public_html/wp-content/plugins/rt-elements/inc/form.php |
<?php
if ( ! function_exists( 'rt_get_cf7_forms' ) ) {
/**
* Get a list of all CF7 forms
*
* @return array
*/
function rt_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 [];
}
}