We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
フォームから、何回もお問い合わせがあった場合に、 同じタイトルのpostが生成されるため、wp_insert_post()の処理が遅くなってしまうようです。
The text was updated successfully, but these errors were encountered:
@nakazonot @inc2734
WordPress 4.2.2 + MW WP Form 2.7.0 と言う古い環境下ですが、同じ現象に遭遇しました。 wp_unique_post_slug() 内部で、申込件数に比例してDBへの読み取りアクセスが発生します。
wp_unique_post_slug()
wp_insert_post( $postarr, $wp_error = false ) の $postarr['post_name'] にユニーク値を指定する事で回避できるようです。 post_name を変える事で MW WP Form にどれだけの影響があるのか掴めていませんが、ご参考になりましたら幸いです。
wp_insert_post( $postarr, $wp_error = false )
$postarr['post_name']
post_name
mw-wp-form/classes/services/class.mail-parser.php
Lines 55 to 59 in 20e4dd5
Sorry, something went wrong.
No branches or pull requests
フォームから、何回もお問い合わせがあった場合に、
同じタイトルのpostが生成されるため、wp_insert_post()の処理が遅くなってしまうようです。
The text was updated successfully, but these errors were encountered: