| 开发者 | adamalexandersson |
|---|---|
| 更新时间 | 2026年2月11日 20:06 |
| PHP版本: | 8.1 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPL v3 or later |
| 版权网址: | 版权信息 |
wp worddown export
For large sites, use background mode:
wp worddown export --background
REST API
Access export functionality programmatically through REST API endpoints:
add_filter('worddown_custom_html_content', function($content, $post_id, $post_type) { if ($post_type === 'page') { $content .= '<div>My custom HTML for page ' . $post_id . '</div>'; } return $content; }, 10, 3);
Available Translations
/wp-content/plugins/worddown directory, or install the plugin through the WordPress plugins screen directly.Yes! Worddown provides filters that allow you to inject custom HTML content from any page builder before the markdown conversion process.
Yes, Worddown works with WordPress multisite installations. You can use the --url parameter with WP-CLI commands to target specific subsites.
For large sites, we recommend using either the background mode via WP-CLI (wp worddown export --background) or the REST API with the background parameter enabled.