筛选/将_action添加到upgrade.php页面

时间:2013-12-22 作者:rob_was_taken

我想更改措辞,并在升级中添加一些样式。php页面。

我们的情况是,我们通过Git跨多个站点更新代码库——当用户在更新后登录时,他们会收到“您必须更新您的数据库”消息。

这很好,但我们希望对页面进行一点优化,要么过滤文本,要么添加一个脚本以肮脏的方式完成。

问题是我没有看到这个页面的任何钩子,文本是在升级中硬编码的。php。

感谢您的帮助:)

1 个回复
最合适的回答,由SO网友:s_ha_dum 整理而成

the first lines of that file, 不计算注释/标题,是。。。

/** Include user install customize script. */
if ( file_exists(WP_CONTENT_DIR . \'/install.php\') )
   require (WP_CONTENT_DIR . \'/install.php\');
您可以在其余代码中包含自定义安装脚本。对我来说,这似乎是最直接的方法。很难说得更多,因为你还没有详细说出你想做什么。

结束

相关推荐

Search with filters and title

我想搜索custom_post 按标题和ACF字段。所以,我用了WP_Query WordPress函数,但我不能按标题过滤,只能按过滤器过滤。当我提交表单时,我有这样的URL:http://example.com/?s=titre&filter1=condition1&filter2=condition2&filter3=condition3 我的代码:$title = $_GET[\'s\']; $args = array( \'pagenam