MyTweetMag

MyTweetMag – Create Collaborative Newsstreams with Twitter and Integrate them into WordPress.

Author:MyTweetMag (profile at wordpress.org)
WordPress version required:2.8
WordPress version tested:2.9.2
Plugin version:0.0
Added to WordPress repository:29-06-2010
Last updated:30-06-2010
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:
Total downloads:909
plugin download
Click to start download

This plugin works in combination with the plattform http://www.mytweetmag.com and allows you to integrate rss-feeds from mytweetmag into your wordpress-blog.

There are two ways to integrate the feeds: 1. with a widget on the sidebar 1. with a shortcode in a static -page 1. with php

PHP-USAGE:

Use following code in Templates of the Theme

Example: <?php MyTweetMag(10, "mytweetmag"); ?>

All params with default-values:

  1. $display = 5
  2. $username = ''
  3. $before_desc = '<br/>', $displaydescriptions = 0, $after_desc = ''
  4. $html = 1
  5. $truncatedescchar = 200
  6. $truncatedescstring = ' ... '
  7. $truncatetitlechar = ''
  8. $truncatetitlestring = ' ... '
  9. $before_date = '<br/><small>'
  10. $date = 0
  11. $after_date = '</small>'
  12. $date_format = ''
  13. $before_creator = '<br/><small>'
  14. $creator = 0
  15. $after_creator = '</small>'
  16. $start_items = '<ul class='mtm'>'
  17. $end_items = '</ul>'
  18. $start_item = '<li>'
  19. $end_item = '</li>'
  20. $target = 'self'
  21. $rel = 'follow'
  22. $charsetscan = 0
  23. $debug = 0
  24. $before_noitems = '<p>'
  25. $noitems = 'No items, feed is empty.'
  26. $after_noitems = '</p>'
  27. $before_error = '<p>'
  28. $error = 'Error: Feed has a error or is not valid'
  29. $after_error = '</p>'
  30. $paging = 0
  31. $prev_paging_link = '&laquo; Previous'
  32. $next_paging_link = 'Next &raquo;'
  33. $prev_paging_title = 'more items'
  34. $next_paging_title = 'more items'
  35. $use_simplepie = 1
  36. $view = 1

SHORTCODE-USAGE:

use the following code in post or pages

Example: [MyTweetMag display='5' username='' target='self']

All params with default-values:

  1. 'display' => 5
  2. 'username' => ''
  3. 'before_desc' => '<br/>'
  4. 'displaydescriptions' => 1
  5. 'after_desc' => ''
  6. 'html' => 1
  7. 'truncatedescchar' => ''
  8. 'truncatedescstring' => ' ... '
  9. 'truncatetitlechar' => ''
  10. 'truncatetitlestring' => ' ... '
  11. 'before_meta' => '<br/><small>'
  12. 'meta' => 0
  13. 'after_meta' => '</small>'
  14. 'start_items' => '<ul class='mtm'>'
  15. 'end_items' => '</ul>'
  16. 'start_item' => '<li>'
  17. 'end_item' => '</li>'
  18. 'target' => 'self'
  19. 'rel' => 'follow'
  20. 'charsetscan' => 0
  21. 'debug' => 0
  22. 'before_noitems' => '<p>'
  23. 'noitems' => __('No items, feed is empty.', FB_MTM_TEXTDOMAIN)
  24. 'after_noitems' => '</p>'
  25. 'before_error' => '<p>'
  26. 'error' => __('Error: Feed has a error or is not valid', FB_MTM_TEXTDOMAIN)
  27. 'after_error' => '</p>'
  28. 'paging' => 0
  29. 'prev_paging_link' => __('&laquo; Previous', FB_MTM_TEXTDOMAIN)
  30. 'next_paging_link' => __('Next &raquo;', FB_MTM_TEXTDOMAIN)
  31. 'prev_paging_title' => __('more items', FB_MTM_TEXTDOMAIN)
  32. 'next_paging_title' => __('more items', FB_MTM_TEXTDOMAIN)
  33. 'use_simplepie' => 1
  34. 'view' => 0