// ============================================ // 移除 GeneratePress 默认版权条("Built with GeneratePress") // 页脚仅保留子主题 footer.php 中自定义的版权 + ICP/公安备案信息 // 父主题保持官方原版,故在子主题注销其默认 footer 构造函数 // ============================================ add_action('wp', function () { remove_action('generate_footer', 'generate_construct_footer'); }, 20);