Skip to content

Instantly share code, notes, and snippets.

@wadadanet
Created June 7, 2018 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wadadanet/00d51d534d5de01c51e4cdd82e7fb359 to your computer and use it in GitHub Desktop.
Save wadadanet/00d51d534d5de01c51e4cdd82e7fb359 to your computer and use it in GitHub Desktop.
wordpress 知りたい要素のファイルを一瞬で調べる方法
function echo_filename(){
if(WP_DEBUG){
$obj = debug_backtrace();
$parent = $obj[0];
$path = $parent['file'];
$filename = basename($path);
echo "<!-- $filename -->";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment