Skip to content

Instantly share code, notes, and snippets.

@kain-jy
kain-jy / easy_install_in_mac
Created October 26, 2011 11:35
install by easy_install in mac osx snow leopard
sudo ARCHFLAGS='-arch i386 -arch x86_64' easy_install [modules]
@kain-jy
kain-jy / wordpress_publish_action_posting_facebook.php
Created September 27, 2011 18:58
wordpress action snipped for posting facebook page when published any post.
function post_facebook($post_ID){
$thumbnail = wp_get_attachment_image_src ( get_post_thumbnail_id ( $post_ID ));
$thumbnail = $thumbnail[0];
$permalink = get_permalink($post_ID);
$title = get_the_title($post_ID);
$ch = curl_init("https://graph.facebook.com/{FACEBOOK_PAGE_ID}/feed");