0

WordPress ブログを作成中ですが、テストのためにサイトの URL を頻繁に変更する必要があります。ブログの現在のホーム URL を投稿に動的に挿入する効率的な方法はありますか?

たとえば、次のようなことをしたい:

[button link="[current_site_url]/about/" size="large"]About[/button] 
4

2 に答える 2

1

<?php bloginfo('url'); ?>はあなたが探しているものだと思います...

また、テンプレートディレクトリへのURLを取得することもできます

<?php bloginfo('template_directory'); ?>

bloginfo の他のパラメータを確認するには、 を参照してください。

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

于 2012-11-24T02:32:29.893 に答える
0

ここではいくつかの例を示します。

//All these functions return the blog's URL as configured in Settings 
site_url(); // Does not display the URL
get_bloginfo('url'); // Does not display the URL
bloginfo('url'); // Always displays the URL

// Returns the root directory URL 
// For http://example.com/myblog returns http://example.com 
home_url(); // Does not display the URL
于 2012-11-24T06:08:36.133 に答える