treehouse : what would you like to learn today?
Web Design Web Development iOS Development

FIREBUG- Way to trace PHP folder that html is pulled from?

  • I´ve just started using a wordpress theme, but cannot find where the theme is pulling information for a newsletter section. Is there a way with Firebug, for finding exactly where the exact file location the information is coming from? For example, with CSS the file and line number is listed on the right.

    Many thanks!!
  • Nope, PHP is server side only and only "prints" out html

    You should look for a unique line of html within the newsletter section and search through the PHP files in the theme folders
    you might even find the word newsletter in a comment
  • Thanks Karl!