wordpress - finding php page in complicated structure -
is there easy way find exact php page (including path) line of code appears in? example, if i'm editing wordpress theme hundreds of php files in multiple nested folders, finding where, say, line 349 in compiled source code appears in file structure?
the php language interpreted , not compiled
usually tell u full path file when error occurs .
if not can display using :
$path = dirname(__file__); echo $path ;
Comments
Post a Comment