Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一些表格要在网站上发送,我如何才能找到处理该表格的脚本在哪里?
例如一个表格
action="/#wpcf7-f20-w1-o1"
在哪里可以找到处理脚本?
这是典型的Contact Form 7插件。您需要挂钩它以获取值。您可以查看非官方开发人员文档和文档以了解更多详细信息。
Contact Form 7
以下是有关如何获取发布的值的示例:
add_action( 'wpcf7_before_send_mail', 'callback_fn' ); function callback_fn( $data ) { // manipulate $data to get values }
wpcf7 看起来像是来自Contact Form 7。检查您的插件目录。顺便说一句,WordPress Answers SE将是一个更好的地方来询问任何与 WordPress 相关的问题。