Ниже фрагмент кода страницы шаблона WordPress, реализующий кнопку "Добавить в ЖЖ". Пример можно посмотреть внизу этой записи, справа в ряду подобных кнопок публикации в социальных медиа.
<a title="Добавить в свой ЖЖ" href="http://www.livejournal.com/update.bml?event=<?php echo urlencode(strip_tags(get_the_excerpt(), '<a><strong>'));
echo urlencode('<br/><a href="' . get_permalink() . '">Прочитать целиком</a>');
?>&subject=<?php echo urlencode(get_the_title()); ?><?php
$out = array();
if (function_exists('get_the_tags')) {
$tags = get_the_tags();
if ( !empty( $tags ) ) {
foreach ( $tags as $t ) {
$out[] = $t->name;
}
}
}
$out[] = get_bloginfo();
echo '&prop_taglist=' . urlencode(join(',', $out));
?>"><img border="0" src="http://s3.amazonaws.com/static.blogfuse.com/images/lj.gif"/></a>
Спасибо за код!