- 2008-06-23 (月) 13:00
- 未分類

/vicuna-adaptors/includes/admin_ui.php
<?php /* Twitter */
$status = $options['twitter']; ?>
<tr<?php if ($status) : echo ‘ class=”active”‘; endif; ?>>
<td class=’name’><a href=”http://twitter.com/”><img
src=”http://twitter.com/favicon.ico” />twitter</a></td>
<td class=’desc’><p>記事のurl付きであなたのTwitterにコメントが届きます</p></td>
<td class=’status’><span class=”<?php if (!$status) : echo ‘in’; endif; ?>active”><?php if ($status) : echo ‘A’; else : echo ‘Ina’; endif; ?>ctive</span></td>
<td class=’togl action-links’><a href=’plugins.php?page=admin_ui.php&action=<?php if ($status) : echo ‘in’;
endif; ?>active&extension=twitter’ title=’<?php if (!$status) : echo ‘A’; else : echo ‘Ina’; endif; ?>ctive this plugin’ class=’edit’><?php if (!$status) : echo ‘A’; else : echo ‘Ina’; endif; ?>ctive</a></td>
</tr>
<tr<?php if ($status) : echo ‘ class=”active”‘; endif; ?>><td colspan=”4″
style=”text-align: center”><form method=”post”
action=”plugins.php?page=admin_ui.php”>user ID = <input type=”text”
name=”twitter-id” value=”<?php echo htmlspecialchars($options["twitter-id"]); ?>” size=”45″ /> <input type=”submit” value=”<?php _e(’submit’, ‘vicuna_adaptor’); ?>” /></form></td></tbody>
かなり下の方の/tbodyの前に挿入、/tbodyは目印なので必要なしです
/vicuna-adapors/vicuna-adaptor.php
if ($options['twitter']) {
function add_twitter_post() {
?>
<li class=”icon twitter post”><a href=”http://twitter.com/home?status=@
<?php
$options = get_option(’vicuna_adaptor’);
echo $options["twitter-id"];
?>
%20(<?php the_permalink() ?>)”><img src=”http://twitter.com/favicon.ico” alt=”Twitterでコメントする” /></a></li>
<?php
}
add_action(”entry_info”, add_twitter_post);
add_action(’single_entry_info’, add_twitter_post);
add_action(’page_entry_info’, add_twitter_post);
}function icon_css() {
同様にかなり下の方、func〜の前まで
関連記事
- WordPress2.5.1がリリースされましたね WordPress(38)
- Social Homes widgetでTwitter等のサービスへのリンクを表示する WordPress(21)
- 県内図書所蔵マップで書名検索が出来ると便利?その3 県内図書所蔵マップ(18)
- このBlogのエントリもTwitter経由でコメント出来るようにしてみた WordPress(17)
- Vicuna Adaptorを入れてみました WordPress(17)
Comments:0
Trackbacks:1
- Trackback URL for this entry
- http://natu-n.com/2008/06/23_13156.php/trackback
- Listed below are links to weblogs that reference
- vicuna-adaptorでTwitterに記事のコメントをPOSTする何かのソース from AFTER THE RAIN
- pingback from Bookmarks about Vicuna 08-10-06 (月) 13:15
-
[...] - bookmarked by 4 members originally found by achamsanjeeva on 2008-09-17 vicuna-adaptorでTwitterに記事のコメントをPOSTする何かのソース http://natu-n.com/2008/06/23_13156.php - bookmarked by 5 members originally found by siqgabby16 on [...]

