diff --git a/twitterAggregator.php b/twitterAggregator.php index 61b3340..99cb30c 100644 --- a/twitterAggregator.php +++ b/twitterAggregator.php @@ -249,10 +249,25 @@ public function widget() { // display the widget public function display() { + + // fetch the and display widget styles + print ''; + + // display the widget + print $this->widget(); + } + + + + // display the widget + public function display_unstyled() { + + // display the widget print $this->widget(); } + // helper function to get a string representing the difference between two times in a human readible format public function ago( $tm, $rcs = 0 ) { if ( is_string( $tm ) ) $tm = strtotime( $tm );