WordPress ブログを作成中ですが、テストのためにサイトの URL を頻繁に変更する必要があります。ブログの現在のホーム URL を投稿に動的に挿入する効率的な方法はありますか?
たとえば、次のようなことをしたい:
[button link="[current_site_url]/about/" size="large"]About[/button]
私<?php bloginfo('url'); ?>
はあなたが探しているものだと思います...
また、テンプレートディレクトリへのURLを取得することもできます
<?php bloginfo('template_directory'); ?>
bloginfo の他のパラメータを確認するには、 を参照してください。
ここではいくつかの例を示します。
//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