Wordpress儿童主题文件行为

时间:2015-08-23 12:35:51

标签: css wordpress

在子主题中,我有一个包含代码修改的//Making first query for getting needed parameter $I->wantTo('Make something'); $I->sendPOST($this->route, [ 'token' => Fixtures::get('token'), 'id' => Fixtures::get('some_id') ]); $I->seeResponseCodeIs(200); $I->seeResponseIsJson(); $I->seeResponseContains('"error_message"'); //Then I get what I need with regexp if (preg_match('/^.*\s(?<value_i_need>\d+)\.$/', $I->grabDataFromResponseByJsonPath('$.status.error_message')[0], $matches)) { $I->sendPOST($this->route, [ 'token' => Fixtures::get('token'), 'id' => Fixtures::get('some_id') ]); $I->seeResponseCodeIs(200); $I->seeResponseIsJson(); $I->seeResponseContains('"something"'); $I->seeResponseContains('"something_else"'); } else { //And if I don't get needed parameter with regular expression, here I have to force test fail } 文件。同时,发布了主题更新,包括新的app.css。在这些情况下,如果我更新主题,在浏览器中仍然会看到我的app.css忽略更新?

换句话说,有趣的是知道重写的过程是应用于文件还是应用于相同文件的代码行之间?感谢

0 个答案:

没有答案