Skip to content

Instantly share code, notes, and snippets.

View samad-aghaei's full-sized avatar

Samad Aghaei samad-aghaei

View GitHub Profile
@samad-aghaei
samad-aghaei / cd-twitter.php
Last active August 29, 2015 14:27 — forked from carldanley/cd-twitter.php
CD Twitter Caching
<?php
//------------------------------------------------------------------------------
class CD_Twitter{
protected $_base_twitter_url = 'https://api.twitter.com/1/statuses/user_timeline.json?';
protected $_default_options = array(
'include_entities' => true,
'include_rts' => true,
'screen_name' => 'carldanley',
'count' => 10
);