开发者 | kunlee |
---|---|
更新时间 | 2025年10月2日 08:18 |
PHP版本: | 8.1 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
wqrm_requests
and wqrm_quotes
) to store all requests and replies reliably.wqrm/quotes-panel
(labeled "Quote Requests")./quote-draft
endpoint to help your team track in-progress stories. Disable the setting under Quotes → Settings if you do not want any automatic sharing.tmx-quote-request-manager
folder to the /wp-content/plugins/
directory, or install via the WordPress plugin installer.The plugin submits quote requests and polls for replies using your Quote API. Provide the base URL and bearer token so the server-side client can authenticate. These values stay on the server and are never printed in the editor.
Yes. Submitting a request sends the publication name (from get_bloginfo('name')
) and your request text to the configured API. Publishing a post sends the post permalink to the configured API. If the prefill helper is turned on, the post title is also sent to /quote-draft
for tracking. Disable prefills in Quotes → Settings to avoid the additional request.
All submissions are stored locally inside the custom tables {$wpdb->prefix}wqrm_requests
and {$wpdb->prefix}wqrm_quotes
. Each row includes who sent the quote and when. You can delete entries from the Quotes admin screen or remove everything by uninstalling the plugin.
Not yet. Until a dedicated exporter is added, site owners should search the Quotes screen by sender email and remove entries manually when processing privacy requests.