| 开发者 |
honza.skypala
vyskoczilova |
|---|---|
| 更新时间 | 2026年8月14日 18:25 |
| PHP版本: | 7.0 及以上 |
| WordPress版本: | 7.1 |
| 版权: | GPL-2.0-or-later |
| 版权网址: | 版权信息 |
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.
Please report security bugs found in the source code of the Zalomení plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin.
2.0 i a huge security release by a new maintainer: 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.
No. Zalomení hooks WordPress output filters, so it rewrites content on the way to the browser only. Your posts stay exactly as you wrote them, and deactivating the plugin removes every inserted non-breaking space.
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;
}