Changeset 449882
- Timestamp:
- 10/11/2011 03:05:58 PM (14 years ago)
- Location:
- sdac-related-content/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (8 diffs)
-
sdac-related_content.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sdac-related-content/trunk/readme.txt
r256648 r449882 3 3 Contributors: jenz 4 4 Requires at least: 2.8 5 Tested up to: 3. 06 Stable tag: 2.3 5 Tested up to: 3.2.1 6 Stable tag: 2.3.1 7 7 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4761649 8 8 … … 30 30 31 31 = Where can I get support for this plugin? 32 You can submit any issues/feedback: http://sandboxdev.com/forums/forum/sdac-related-content 33 32 You can submit any issues/feedback: http://www.sandboxdev.com/forums/forum/sdac-wordpress-plugins/sdac-related-content/ 34 33 35 34 == Screenshots == … … 41 40 == Changelog == 42 41 42 = 2.3.1 = 43 * (October 11, 2011) 44 * Added a div to surround output for better control of layout (sdac_related_posts) 45 43 46 = 2.3 = 44 47 * (June 23, 2010) 48 45 49 * Moved to using register_settings() (requires WordPress 2.8 46 50 * Complete code cleanup … … 48 52 = 2.1.1 = 49 53 * (July 8, 2009) 54 50 55 * Moved the settings to the "Settings" menu (best practice) 51 56 * Changed the actual plugin file name to be more consistent … … 53 58 = 2.1 = 54 59 * (May 20, 2009) 60 55 61 * Added in new functionality to show posts by tag or by category 56 62 * Fixed an issue where no posts would show up with default settings … … 59 65 = 2.0.2 = 60 66 * (April 21, 2009) 67 61 68 * Fixed default settings (echo, post type) 62 69 * Added FAQ section to README … … 64 71 = 2.0.1 = 65 72 * (April 20, 2009) 73 66 74 * Replaced "Related Posts" text with "Related Content" 67 75 * Updated README … … 78 86 == Upgrade Notice == 79 87 88 = 2.3.1 = 89 Added a div to surround output for better control of layout (sdac_related_posts) 90 80 91 = 2.3 = 81 92 Major code cleanup, overhaul. This update requires WordPress 2.8 or newer. -
sdac-related-content/trunk/sdac-related_content.php
r256648 r449882 5 5 Description: Show Related Content by Category or by Tag with Caching. 6 6 Author: Jennifer Zelazny/SDAC Inc. 7 Version: 2.3 7 Version: 2.3.1 8 8 Author URI: http://www.sandboxdev.com 9 9 … … 276 276 global $wpdb, $post; 277 277 $sdac_paramaters = get_option('sdac_related_content_options'); 278 278 279 279 //General Defaults 280 280 if (!$sdac_paramaters['related_type']) { … … 430 430 431 431 if ( $related_entries ) { 432 $output .= '<div id="sdac_related_posts">'; 432 433 $output .= $sdac_related_title . $sdac_related_code_before_items. "\n"; 433 434 foreach ( $related_entries as $entry ) { … … 435 436 } 436 437 $output .= $sdac_related_code_after_items. "\n"; 437 } else { 438 $output = $sdac_related_no_matches; 438 $output .= '</div>'; 439 } else { 440 $output = '<div id="sdac_related_posts">' . $sdac_related_no_matches . '</div>'; 439 441 } 440 442 if ( isset($sdac_related_echo ) === true && $sdac_related_echo ) {
Note: See TracChangeset
for help on using the changeset viewer.