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

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -