Changeset 381074
- Timestamp:
- 05/05/2011 03:01:17 AM (15 years ago)
- Location:
- dynowidg/trunk
- Files:
-
- 3 edited
-
DynoWidg.php (modified) (1 diff)
-
common/inc/widget.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynowidg/trunk/DynoWidg.php
r377618 r381074 4 4 * Plugin URI: http://benjaminsterling.com/wordpress-plugins/dynowidg/ 5 5 * Description: This plugin will allow you to dynamically add any piece of content to the sidebar as well as give you the ability to limit what pages/sections based on Wordpress' conditionals and/or selecting specific areas to limit. 6 * Version: 0.1. 26 * Version: 0.1.3 7 7 * Author: Benjamin Sterling | KenzoMedia 8 8 * Author URI: http://kenzomedia.com -
dynowidg/trunk/common/inc/widget.php
r374253 r381074 30 30 echo $before_widget_result[1]. 31 31 $before_widget_result[2].' '. 32 $ dcw_cls.32 $cls. 33 33 $before_widget_result[3]; 34 34 … … 41 41 $thepost->post_content = apply_filters('the_content', $thepost->post_content); 42 42 $thepost->post_content = str_replace(']]>', ']]>', $thepost->post_content); 43 echo '<div class="pad">'; 43 44 echo $thepost->post_content; 45 echo '</div>'; 44 46 45 47 echo $after_widget; -
dynowidg/trunk/readme.txt
r377618 r381074 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1.2 7 Stable tag: 0.1. 27 Stable tag: 0.1.3 8 8 9 9 This plugin will allow you to dynamically add any piece of content to the sidebar as well as give you the ability to limit what pages/sections based on Wordpress' conditionals and/or selecting specific areas to limit. … … 25 25 = Quick Note = 26 26 27 I am thinking that the logic section of the plugin is a bit much and most likely not needed by default so the next minor release I most likely will be removing that functionality and add it to it's own plugin.27 Next major release I will be removing the logic part of this plugin in favor of two alternatives that I am working on. One that will add the same feature back into each widget you have and one where you can add widgets from the Page editor. Hopefully they will be release all at the same time to make sure you have options. 28 28 29 29 … … 42 42 43 43 == Changelog == 44 = 0.1.3 = 45 Fixed class being added not getting appended to the module 46 Added a wrapping div with a class of pad around the content being dumped out for easier styling 47 Started the process of removing the "logic" part of this plugin, see quick notes for more information 44 48 45 49 = 0.1.2 =
Note: See TracChangeset
for help on using the changeset viewer.