Where’s the HTML?
-
I’ve recently upgraded to 1.5 and I’m wanting to re-add some code for my stat counter to my blog. To do so, I need to put the code within the body tags on the page to be tracked, but I can’t for the life of me find the relevant word press page that actually has honest to god HTML…most have php and/or css and thus lack the needed body tags. My index.php and blogger.php (which are, at least, where the browser is pointed when one visits the blog) both have (only) the following message:
<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, true);
require(‘./wp-blog-header.php’);
?>Intuitively it seems I *should* put the stat counter code in index.php (and blogger.php) but I don’t know where to and/or how I should change the code in index.php (to add the more traditionaly html formatting so that I can get my body tags) in ways that won’t affect the php coding.
(Randomly, when I go to the blog site and check the source from the browser, I do get a page with the html…but I take it that the page is actually a nice combination of a lot of different wordpress pages and database information and such and thus the source code from the browser doesn’t tell me much.)
Do you know where to find the relevant page with actual html? Do I need to add it to the index.php page? (If so, can I do it easily without messing up the php that’s currently there?)
Thank you!
- The topic ‘Where’s the HTML?’ is closed to new replies.