I am not satisfy with the answer.
please confirm me that we can’t display those sidebar contents from another blog site.
because my client has told me it is possible. actually he has created his blog site http://starfleetyachts.wordpress.com/. I have to display its side bar on his new site. like http://newsite.com/
please reply me its urjent.
Thanks
I have seen this this is not saying that use can show posts list from different wordpress blog site. directlly using its url.
I am currentlly using this php code……
<html>
<base href=”http://blogsitename.com/” />
<body>
<?php
require(‘http://blogsitename.com/wp-blog-header.php’);
?>
<?php
$posts = get_posts(‘numberposts=10&order=ASC&orderby=post_title’);
foreach ($posts as $post) : start_wp(); ?>
<?php the_date(); echo “
“; ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php
endforeach;
?>
</body>
</html>