Changeset 193669
- Timestamp:
- 01/13/2010 08:13:30 PM (16 years ago)
- Location:
- mm-breaking-news/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
mm-bnlist.css (modified) (1 diff)
-
mm-bnlist.css.dark (modified) (1 diff)
-
mm-bnlist.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mm-breaking-news/trunk/changelog.txt
r193586 r193669 1 2010-01-13, ver 0.6.1, Milan Milosevic 2 Bugfix: problems with placement of shortcode content. 3 1 4 2010-01-13, ver 0.6, Milan Milosevic 2 5 Added shortcode [mm-breaking-news] for displaying a list in a page/post -
mm-breaking-news/trunk/mm-bnlist.css
r107565 r193669 3 3 Description: Displays lists of posts from selected categories whereever you like. You can select how many different lists you want, sort posts by date or random, select which categories to include or exclude from specific list. 4 4 Author: Milan Milosevic 5 Version: 0. 5.25 Version: 0.6.1 6 6 Author URI: http://www.mmilan.com 7 7 */ -
mm-breaking-news/trunk/mm-bnlist.css.dark
r107565 r193669 3 3 Description: Displays lists of posts from selected categories whereever you like. You can select how many different lists you want, sort posts by date or random, select which categories to include or exclude from specific list. 4 4 Author: Milan Milosevic 5 Version: 0. 5.25 Version: 0.6.1 6 6 Author URI: http://www.mmilan.com 7 7 -
mm-breaking-news/trunk/mm-bnlist.php
r193586 r193669 6 6 Author: Milan Milosevic 7 7 Author URI: http://www.mmilan.com/ 8 Version: 0.6 8 Version: 0.6.1 9 9 License: GPL v3 - http://www.gnu.org/licenses/ 10 10 … … 131 131 $show_rand = unserialize(get_option('mm_bnlist_rand')); 132 132 133 $mm_echo = ''; 134 133 135 for ( $i = 0; $i < $opt_val['n']; $i+=1 ) { 134 echo"<h3>".$opt_tmp['title'][$i]."</h3>";135 echo"<ul>";136 $mm_echo .= "<h3>".$opt_tmp['title'][$i]."</h3>"; 137 $mm_echo .= "<ul>"; 136 138 $catid = Array(); 137 139 if (!empty($opt_tmp['in'][$i])) foreach ($opt_tmp['in'][$i] as $tmp) $catid[] = $tmp; … … 152 154 else $sep = " ("; 153 155 if (($show_date[$i] != "YES") and ($show_comments[$i] != "YES")) $sep = ""; 154 print"<li><a href=\"".get_permalink()."\">".$show_post->post_title."</a><span class=\"date_com\">".$sh_date.$sep.$no_com."</span></li>";156 $mm_echo .= "<li><a href=\"".get_permalink()."\">".$show_post->post_title."</a><span class=\"date_com\">".$sh_date.$sep.$no_com."</span></li>"; 155 157 endforeach; 156 echo"</ul>";158 $mm_echo .= "</ul>"; 157 159 } 158 160 159 161 if (get_option('mm_bnlist_credits') != "NO") 160 echo "<p style=\"text-align: right; font-size: 0.7em \">Plugin by <a href=\"http://www.mmilan.com\">mmilan.com</a></p>"; 162 $mm_echo .= "<p style=\"text-align: right; font-size: 0.7em \">Plugin by <a href=\"http://www.mmilan.com\">mmilan.com</a></p>"; 163 164 return $mm_echo; 161 165 } 162 166 -
mm-breaking-news/trunk/readme.txt
r193586 r193669 5 5 Requires at least: 2.6 6 6 Tested up to: 2.9.1 7 Stable tag: 0.6 7 Stable tag: 0.6.1 8 8 9 9 Displays lists of posts from selected categories. You can select how many different lists you want, sort posts by date or random. … … 21 21 Changelog: 22 22 23 2010-01-13, ver 0.6.1, Milan Milosevic 24 Bugfix: problems with placement of shortcode content. 25 23 26 2010-01-13, ver 0.6, Milan Milosevic 24 27 Added shortcode [mm-breaking-news] for displaying a list in a page/post
Note: See TracChangeset
for help on using the changeset viewer.