This plugin displayes a number of comments in posts crossposted (
http://ebroder.net/livejournal-crossposter/ ) to LiveJournal. You can see how if works here:
http://a-bishop.livejournal.com/.
Place lj-comments.php to your plugins folder and activate it in control panel.
Place wp-comments-php to WordPress root folder.
In lj-crosspost.php add the following string where it is needed:
EXAMPLE:
// Depending on whether comments are allowed or not, alter the header
// appropriately
if($comments) {
$postHeader .= sprintf(
(' You can comment here or there.', LJXP_DOMAIN), get_permalink($post_id));
$postHeader .= lj_comments($post_id);
}
else {
$postHeader .= sprintf((' Please leave any
comments there.', LJXP_DOMAIN), get_permalink($post_id));
$postHeader .= lj_comments($post_id);
}
$postHeader .= '';