如何在wordpress静态页面中获取主题网址

时间:2014-05-25 15:10:48

标签: wordpress url static themes

我是wordpress的新手。我在wordprees网站上添加了一些静态页面。在动态页面中,我们可以通过bloginfo获取主题网址(' template_directory');但它不适用于静态页面。那么这个静态页面代码的替代方案是什么呢?

3 个答案:

答案 0 :(得分:0)

您可以使用一点Javascript:

location.pathname

答案 1 :(得分:0)

当然!使用此功能:

http://codex.wordpress.org/Function_Reference/get_template_directory_uri

如果您有任何其他问题,请与我们联系。

答案 2 :(得分:0)

我的问题解决了,谢谢你的回复。我使用短代码获取页面

中的主题链接

// [themeurl] function themeurl_func($ atts){

return bloginfo('template_directory');

} add_shortcode(' themeurl',' themeurl_func');

然后在页面中写下[themeurl]我们可以在页面

中获得主题