Changeset 1127990
- Timestamp:
- 04/04/2015 11:41:09 PM (11 years ago)
- Location:
- whats-new-genarator/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
whats-new-generator.php (modified) (2 diffs)
-
whats-new.css (modified) (3 diffs)
-
whatsnew-view.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
whats-new-genarator/trunk/readme.txt
r1063465 r1127990 1 1 === What's New Generator === 2 Contributors: W ordPressBizPlugin2 Contributors: WP-BizPlugin 3 3 Donate link: 4 4 Tags: what's new, update Post page 5 5 Requires at least: 3.5 6 6 Tested up to: 4.1 7 Stable tag: 1.11. 07 Stable tag: 1.11.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 40 40 == Changelog == 41 42 = 1.11.1 = 43 * 軽微な不具合を修正しました 41 44 42 45 = 1.11.0 = -
whats-new-genarator/trunk/whats-new-generator.php
r1063465 r1127990 4 4 Plugin URI: http://residentbird.main.jp/bizplugin/ 5 5 Description: What's New(新着情報)を指定した固定ページや投稿に自動的に表示するプラグインです。 6 Version: 1.11. 06 Version: 1.11.1 7 7 Author:Hideki Tanaka 8 8 Author URI: http://residentbird.main.jp/bizplugin/ … … 14 14 class WNG 15 15 { 16 const VERSION = "1.11. 0";16 const VERSION = "1.11.1"; 17 17 const SHORTCODE = "showwhatsnew"; 18 18 const OPTIONS = "whats_new_options"; -
whats-new-genarator/trunk/whats-new.css
r1063465 r1127990 28 28 border-top-right-radius: 3px; 29 29 } 30 div.wn-head .wn-title {31 font-weight: bold;32 font-size: 100%;33 text-align: left;34 float: left;35 overflow: hidden;36 width: auto;37 }38 30 div.wn-head .wn-postlist { 39 31 background: transparent url("./image/list.png") left center no-repeat; … … 43 35 cursor: pointer; 44 36 float: right; 45 width: 4em; 37 width: 4.2em; 38 } 39 div.wn-head .wn-title { 40 font-weight: bold; 41 font-size: 100%; 42 text-align: left; 43 overflow: hidden; 46 44 } 47 45 … … 63 61 } 64 62 div.wn-item .wn-article { 65 margin: 0 0 0 8.1em;66 63 padding: 0 2px; 67 64 overflow: hidden; -
whats-new-genarator/trunk/whatsnew-view.php
r811314 r1127990 2 2 <div class='wn-head' 3 3 <?php echo "style='background-color: {$info->background_color}; color : {$info->font_color};'" ; ?>> 4 <div class='wn-title'>5 <?php echo $info->title; ?>6 </div>7 4 <?php if (!empty($info->postlist_url)): ?> 8 5 <div class='wn-postlist'> … … 10 7 </div> 11 8 <?php endif; ?> 9 <div class='wn-title'> 10 <?php echo $info->title; ?> 11 </div> 12 12 </div> 13 13 <?php foreach($info->items as $item): ?>
Note: See TracChangeset
for help on using the changeset viewer.