Advertisement
salmancreation

cf7 for shortcode get

Apr 28th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $cf7 = get_posts( 'post_type="wpcf7_contact_form"&numberposts=-1' );
  2.  
  3. $contact_forms = array();
  4. if ( $cf7 ) {
  5. foreach ( $cf7 as $cform ) {
  6. $contact_forms[ $cform->post_title ] = $cform->ID;
  7. }
  8. } else {
  9. $contact_forms[ __( 'No contact forms found', 'filix-core' ) ] = 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement