私は子テーマ functions.php を持っており、Wordpress ファイル構造の外にあるショート コードを使用して、いくつかのローカル ドメイン ファイルを含めようとしています。
何がうまくいかないのかわかりません。誰にも指針がありますか?
子テーマ functions.php
<?php
// localhost path
define('WEB_ROOT', 'http://www.example.com/');
// includes
function filePost() {
include WEB_ROOT.'/include/file.php';
}
add_shortcode('fileShortCode', 'filePost');
?>