Newbie question – content
-
I have just started fiddling with wordpress – used it once before and didn’t mind it but jumped back on the joomla wagon.
After 3.0 and the ability to multi-site I am back. I have slaved away learning to template in my spare time this week and have scoured the internet for tutorials. I have managed to make an index.php and front-page.php template using a tutorial I have found and everything looks good – so far.
Now it’s time to add content and I’m at a road block, had to restart my computer to install some updates and sure enough forgot to bookmark the tutorial I was using (I ran out of coffee, leave me alone haha).
Anyways I am trying to add content to my front-page.php and I have my code laid out as such:
<html> <body> <div id="mainbox"> <div id="topspace"> </div> <div id="greybox"> <div id="picturespacetop"> <?php get_header(); ?> </div> <div id="picturebox"></div> <div id="picturespacebottom"> <?php get_sidebar(); ?> </div> </div> <strong> <div id="content"> This is where my content should be! </div></strong> <div id="footer"> <?php get_footer(); ?> </div> </div> </body> </html>Of course my content I don’t have anything under my content div….I know the answer is probably on these forums somewhere(I will look high and low tomorrow, for tonight google has failed me). In theory what I would love to do is make a page (let’s call it index) in my dashboard; then insert whatever content is on that index page in my dashboard into front-page.php. I don’t want posts – I don’t want users to be able to comment. My goal is that the front page will have a short and sweet blurb on my site (more of a CMS type setup), and users can comment on posts on other pages of my site.
Thank you if you go easy on me by giving me the answer, otherwise, thank you for just reading.
The topic ‘Newbie question – content’ is closed to new replies.