Changeset 1143052
- Timestamp:
- 04/23/2015 09:20:22 AM (11 years ago)
- Files:
-
- 4 edited
-
badge/trunk/readme.txt (modified) (1 diff)
-
badges/trunk/readme.txt (modified) (1 diff)
-
currently-reading/trunk/CurrentlyReading.php (modified) (3 diffs)
-
currently-reading/trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
badge/trunk/readme.txt
r981788 r1143052 4 4 Tags: snippets, badges, admin, administration, jadb 5 5 Requires at least: 2.8 6 Tested up to: 4. 06 Tested up to: 4.2 7 7 Stable tag: trunk 8 8 -
badges/trunk/readme.txt
r981790 r1143052 3 3 Tags: books, read, reading, admin, administration, jadb 4 4 Requires at least: 2.8 5 Tested up to: 4. 05 Tested up to: 4.2 6 6 Stable tag: trunk 7 7 -
currently-reading/trunk/CurrentlyReading.php
r981804 r1143052 26 26 // @see WP_Widget::widget 27 27 // 28 function widget( $args, $instance) {28 function widget( $args, $instance ) { 29 29 $args = wp_parse_args( $args, $this->widget_defaults ); 30 30 extract( $args ); … … 35 35 $boxshadow = $instance["boxshadow"] ? true : false; 36 36 37 if ( $instance['isbn'] != "") { // No point in a "Currently Reading" if you aren't, is there?37 if ( $instance['isbn'] != "" ) { // No point in a "Currently Reading" if you aren't, is there? 38 38 39 39 echo $before_widget; … … 70 70 // @see WP_Widget::update 71 71 // 72 function update( $new_instance, $old_instance) {72 function update( $new_instance, $old_instance ) { 73 73 $instance = $old_instance; 74 74 $instance['title'] = strip_tags( $new_instance['title'] ); -
currently-reading/trunk/readme.txt
r981794 r1143052 3 3 Tags: books, read, reading, admin, administration, jadb 4 4 Requires at least: 2.8 5 Tested up to: 4. 05 Tested up to: 4.2 6 6 Stable tag: trunk 7 7 … … 27 27 2. Upload `currently-reading.php` to the `/wp-content/plugins/` directory. 28 28 3. Activate the plugin through the 'Plugins' menu in WordPress. 29 4. Use the "Currently Reading" widget .29 4. Use the "Currently Reading" widget (found under Appearance -> Widgets). 30 30 31 31 **Upgrade**
Note: See TracChangeset
for help on using the changeset viewer.