WordPressをインストールしたディレクトリのフルパスを取得
WordPressをインストールしたディレクトリ(フォルダ)のフルパスを取得したいという場合は、get_home_path()関数を使います。
出力結果
/home/sample/sample.co.jp/public_html/
以下にサンプルを示します。
get_home_path()の結果だけを出力するショートコードです。
<?php
add_shortcode('get_home_path', function ($atts) {
return "<div>" . "get_home_path=" . get_home_path() . "</div>" . PHP_EOL;
});