at path:
ROOT
/
wp-content
/
plugins
/
contact-form-7
/
modules
/
listo.php
run:
R
W
Run
akismet
DIR
2026-02-08 11:50:06
R
W
Run
constant-contact
DIR
2026-02-08 11:50:06
R
W
Run
recaptcha
DIR
2026-02-08 11:50:06
R
W
Run
sendinblue
DIR
2026-02-08 11:50:06
R
W
Run
stripe
DIR
2026-02-08 11:50:06
R
W
Run
turnstile
DIR
2026-02-08 11:50:06
R
W
Run
acceptance.php
7.3 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
checkbox.php
9.88 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
count.php
1.45 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
date.php
6.08 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
disallowed-list.php
1.83 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
doi-helper.php
730 By
2026-02-08 11:50:06
R
W
Run
Delete
Rename
file.php
6.94 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
flamingo.php
8.42 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
hidden.php
776 By
2026-02-08 11:50:06
R
W
Run
Delete
Rename
listo.php
755 By
2026-02-08 11:50:06
R
W
Run
Delete
Rename
number.php
6.64 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
quiz.php
6.81 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
really-simple-captcha.php
13.45 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
reflection.php
2.27 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
response.php
460 By
2026-02-08 11:50:06
R
W
Run
Delete
Rename
select.php
6.62 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
submit.php
2.7 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
text.php
8.39 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
textarea.php
5.25 KB
2026-02-08 11:50:06
R
W
Run
Delete
Rename
error_log
up
📄
listo.php
Save
<?php /** ** Retrieve list data from the Listo plugin. ** Listo http://wordpress.org/plugins/listo/ **/ add_filter( 'wpcf7_form_tag_data_option', 'wpcf7_listo', 10, 3 ); function wpcf7_listo( $data, $options, $args ) { if ( ! function_exists( 'listo' ) ) { return $data; } $args = wp_parse_args( $args, array() ); if ( $contact_form = wpcf7_get_current_contact_form() ) { $args['locale'] = $contact_form->locale(); } foreach ( (array) $options as $option ) { $option = explode( '.', $option ); $type = $option[0]; if ( isset( $option[1] ) ) { $args['group'] = $option[1]; } else { unset( $args['group'] ); } if ( $list = listo( $type, $args ) ) { $data = array_merge( (array) $data, $list ); } } return $data; }