Question : integrated wordpress into site.  blog pic attachments not working.

i've integrated wordpress into my site with the following:

1:
2:
3:
4:
5:
6:
7:
8:
9:
<?php 
/* Short and sweet */
define('WP_USE_THEMES', false);
require('../wordpress/wp-blog-header.php');
?>

<?php
require('../wordpress/wp-blog-header.php');
?>


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
<?php
require('../wordpress/wp-blog-header.php');
?>

<?php
$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');
foreach ($posts as $post) : start_wp(); ?>
<h2><?php the_title(); ?><br />
<span><?php the_date(); echo "<br />"; ?> </span></h2>
<?php the_excerpt(); ?> 
<?php
endforeach;
?>


when i create a new post and attach an image, i never see this image in the final blog post.  

Answer : integrated wordpress into site.  blog pic attachments not working.

Hi,

Refer this article:
http://support.microsoft.com/kb/895089

Hope this helps,
Shree
Random Solutions  
 
programming4us programming4us