Changeset 754105
- Timestamp:
- 08/09/2013 02:58:16 PM (13 years ago)
- Location:
- mz-post-and-page-excerpts-widgets/trunk
- Files:
-
- 4 edited
-
mz-page-widget.php (modified) (2 diffs)
-
mz-post-and-page-excerpts-widgets.php (modified) (1 diff)
-
mz-post-widget.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mz-post-and-page-excerpts-widgets/trunk/mz-page-widget.php
r752881 r754105 42 42 echo $before_widget; 43 43 if($mz_page_highlights==1) 44 echo '<div class="mz-page-highlights" style="border-color:'.$mz_page_highlights_color.'">'; 44 echo '<div class="mz-page-in mz-page-highlights" style="border-color:'.$mz_page_highlights_color.'">'; 45 else 46 echo '<div class="mz-page-in">'; 45 47 if (!empty($mz_page_title)) { 46 48 echo $before_title . $mz_page_title . $after_title; … … 74 76 } 75 77 if($mz_page_highlights==1) 78 echo '</div>'; 79 else 76 80 echo '</div>'; 77 81 echo $after_widget; -
mz-post-and-page-excerpts-widgets/trunk/mz-post-and-page-excerpts-widgets.php
r752881 r754105 4 4 Plugin URI: http://maztch.es/ 5 5 Description: Creates widgets that display excerpts from posts or pages in the sidebar. You may use content or excerpt, 'more' links, show featured image, set excerpt length of the post or page. 6 Version: 1. 16 Version: 1.2 7 7 Author: Maztch 8 8 Author URI: http://maztch.es -
mz-post-and-page-excerpts-widgets/trunk/mz-post-widget.php
r752896 r754105 42 42 echo $before_widget; 43 43 if($mz_post_highlights==1) 44 echo '<div class="mz-post-highlights" style="border-color:'.$mz_post_highlights_color.'">'; 44 echo '<div class="mz-post-in mz-post-highlights" style="border-color:'.$mz_post_highlights_color.'">'; 45 else 46 echo '<div class="mz-post-in">'; 45 47 if (!empty($mz_post_title)) { 46 48 echo $before_title . $mz_post_title . $after_title; … … 74 76 } 75 77 if($mz_post_highlights==1) 78 echo '</div>'; 79 else 76 80 echo '</div>'; 77 81 echo $after_widget; -
mz-post-and-page-excerpts-widgets/trunk/readme.txt
r752881 r754105 39 39 40 40 == Changelog == 41 = 1.2 = 42 Released on 2013/08/09 43 44 * Small update: Added extra class selector arround widget content.This allows to set padding to widget content. 45 41 46 = 1.1 = 42 47 Released on 2013/08/07
Note: See TracChangeset
for help on using the changeset viewer.