本文档介绍了 WordPress 主题测试的核心流程,包括使用主题单元测试数据填充站点以模拟内容,以及执行手动测试来验证主题功能和边缘情况响应。
define('WP_DEBUG', true);The Theme Unit Test data is a WordPress import file will fill a WordPress site with enough stub data (posts, media, users) to test a theme.
The Theme Unit Tests are manual tests to walk through to test theme functionality and how the theme responds to the edge-cases of content and settings.
wp-config.php file to see deprecated function calls and other WordPress-related errors: define('WP_DEBUG', true);