如果是phonegap在wordpress加载不同的主题

时间:2014-07-10 16:19:46

标签: wordpress cordova wordpress-theming

我想知道当通过phonegap应用程序进行访问时,如何在我的wordpress网站上加载不同的主题。

所以,我创建了一个带有我wordpress主题链接的phonegap html页面,我希望何时点击该链接,wordpress会加载不同的主题。

1 个答案:

答案 0 :(得分:0)

让PhoneGap应用最初将?theme=[MY THEME]附加到网址的末尾。

然后,在WordPress方面,第一页将起作用(如您所说),但如果用户然后单击另一个链接,则它不再包含?theme=[MY THEME],因此它会加载标准页面。

因此,在WordPress方面,实现以下逻辑:

if (theme && (theme == [MY THEME])) {
  //append the "?theme=[MY THEME]" string to the end of all the internal URL's on this page
}

如果链接已经有&,您应该使用?代替get-parameters,但无论如何,祝你好运!