| 开发者 |
honza.skypala
vyskoczilova |
|---|---|
| 更新时间 | 2026年5月11日 18:43 |
| PHP版本: | 7.0 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPL-2.0-or-later |
| 版权网址: | 版权信息 |
vyskoczilova), an independent WordPress developer based in Czechia. She took the plugin over in 2026 after three years without updates, ran a full security audit, and now ships regular releases. The plugin was originally created by Honza Skýpala, whose work is gratefully acknowledged.
What the plugin handles
zalomeni_filtry filter so developers can add or remove the WordPress hooks Zalomení applies to.
For more information on Czech typographic rules, see the Institute of the Czech Language.
wp-content/plugins/.Yes. The plugin returned to active development in 2026 under maintainer Karolína Vyskočilová (vyskoczilova on WordPress.org). Issues and security fixes are addressed promptly.
Yes. 2.0 is a security release: all user inputs are sanitized, regex inputs are escaped, admin output is escaped, and the codebase is now covered by PHPUnit tests. Updating is recommended for anyone still on 1.x.
Yes. Zalomení runs on WordPress output filters (the_content, the_title, the_excerpt, etc.), so it works regardless of which editor produced the content.
Yes. The default lists of prepositions, conjunctions, and abbreviations are Czech, but they're fully editable under Settings → Reading. Replacing the Czech entries with Slovak ones gives you a working Slovak typography filter without any code changes.
The plugin applies to these filters by default: comment_author, term_name, link_name, link_description, link_notes, bloginfo, wp_title, widget_title, term_description, the_title, the_content, the_excerpt, comment_text, single_post_title, list_cats.
Yes. Use the zalomeni_filtry filter to remove or add filters:
add_filter('zalomeni_filtry', 'remove_title_from_zalomeni');
function remove_title_from_zalomeni(array $filters) {
unset($filters['the_title']);
return $filters;
}