View Single Post
Old 02-20-2012, 04:23 PM   PM User | #3
Radscientist
New Coder

 
Join Date: Nov 2006
Location: Washington, DC
Posts: 30
Thanks: 3
Thanked 0 Times in 0 Posts
Radscientist is an unknown quantity at this point
I basically followed this site to do the #2 thing.
http://www.corvidworks.com/articles/...on-other-pages

The problem is that I don't want to have to deal with the theme script and all of that when I can do html and css perfectly well. Not dissing on PHP, I just simply don't have that much of a control over the wordpress theme script as I would like in term of comprehending how it all work together.

Here is my blog script



Code:
<?php
define('WP_USE_THEMES', false);
require('./blog/wp-load.php');
query_posts('showposts=15');
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Lost Ear Studio</title><link rel="stylesheet" href="style.css" type="text/css" />
</head>

<body>

<base href="http://lost-ear-studio.com" />


<div id="position1">
<div id="positioning">
<div id="container">




  <div id="body">
    
	<div id="top"><!-- --></div>
        
		
        
		<div id="body1">
		
        		  <p>&nbsp;</p>

		  		  <p>&nbsp;</p>

		  <h1 align="center">Jeffery Stroud's Blog</h1>
		  <p align="center">&nbsp;</p>
		  <p align="center">&nbsp;</p>
		  <p align="center"><span class="text_top">An aspiring digital media artist</span></p>
		  <p>&nbsp;</p>
		<hr />
		<hr />
	   <?php while (have_posts()): the_post(); ?>
<?php endwhile; ?>

<?php while (have_posts()): the_post(); ?>
<p>&nbsp;</p>
<h2><?php the_title(); ?></h2>
<p>&nbsp;</p>
<?php the_content(); ?>

<p>&nbsp;</p><p>&nbsp;</p>
<p class="postmetadata">
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</p>
<p>&nbsp;</p>

<hr />
<hr />
<?php endwhile; ?>

 <div class="navigation">
 <div class="alignleft"><?php previous_posts_link('&laquo; Previous Entries') ?></div>
 <div class="alignright"><?php next_posts_link('Next Entries &raquo;','') ?></div>
 </div>
	   
	  
<div id="footer">
<p align="center"><a href="#">Disclaimer</a> : <a href="#">Contact</a> : <a href="#">FAQ</a></p>
</div>
</div>
<div id="bottom"></div>
</div>
    
</div>
</div>
</div>








</body>
</html>
__________________
http://lost-ear-studio.com/
Radscientist is offline   Reply With Quote