Plugin Directory

Changeset 449882


Ignore:
Timestamp:
10/11/2011 03:05:58 PM (14 years ago)
Author:
jenz
Message:

Added new new div for styling, v 2.3.1

Location:
sdac-related-content/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sdac-related-content/trunk/readme.txt

    r256648 r449882  
    33Contributors: jenz
    44Requires at least: 2.8
    5 Tested up to: 3.0
    6 Stable tag: 2.3
     5Tested up to: 3.2.1
     6Stable tag: 2.3.1
    77Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4761649
    88
     
    3030
    3131= Where can I get support for this plugin?
    32 You can submit any issues/feedback: http://sandboxdev.com/forums/forum/sdac-related-content
    33 
     32You can submit any issues/feedback: http://www.sandboxdev.com/forums/forum/sdac-wordpress-plugins/sdac-related-content/
    3433
    3534== Screenshots ==
     
    4140== Changelog ==
    4241
     42 = 2.3.1 =
     43* (October 11, 2011)
     44* Added a div to surround output for better control of layout (sdac_related_posts)
     45
    4346 = 2.3 =
    4447* (June 23, 2010)
     48
    4549* Moved to using register_settings() (requires WordPress 2.8
    4650* Complete code cleanup
     
    4852 = 2.1.1 =
    4953* (July 8, 2009)
     54
    5055* Moved the settings to the "Settings" menu (best practice)
    5156* Changed the actual plugin file name to be more consistent
     
    5358 = 2.1 =
    5459* (May 20, 2009)
     60
    5561* Added in new functionality to show posts by tag or by category
    5662* Fixed an issue where no posts would show up with default settings
     
    5965 = 2.0.2 =
    6066* (April 21, 2009)
     67
    6168* Fixed default settings (echo, post type)
    6269* Added FAQ section to README
     
    6471 = 2.0.1 =
    6572* (April 20, 2009)
     73
    6674* Replaced "Related Posts" text with "Related Content"
    6775* Updated README
     
    7886== Upgrade Notice ==
    7987
     88= 2.3.1 =
     89Added a div to surround output for better control of layout (sdac_related_posts)
     90
    8091 = 2.3 =
    8192Major code cleanup, overhaul. This update requires WordPress 2.8 or newer.
  • sdac-related-content/trunk/sdac-related_content.php

    r256648 r449882  
    55Description: Show Related Content by Category or by Tag with Caching.
    66Author: Jennifer Zelazny/SDAC Inc.
    7 Version: 2.3
     7Version: 2.3.1
    88Author URI: http://www.sandboxdev.com
    99
     
    276276    global $wpdb, $post;
    277277    $sdac_paramaters = get_option('sdac_related_content_options');
    278    
     278       
    279279    //General Defaults
    280280    if (!$sdac_paramaters['related_type']) {
     
    430430 
    431431    if ( $related_entries ) {
     432        $output .= '<div id="sdac_related_posts">';
    432433        $output .= $sdac_related_title . $sdac_related_code_before_items. "\n";
    433434        foreach ( $related_entries as $entry ) {
     
    435436        }
    436437        $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>';
    439441    }
    440442    if ( isset($sdac_related_echo ) === true && $sdac_related_echo ) {
Note: See TracChangeset for help on using the changeset viewer.