Plugin Directory

Changeset 655230


Ignore:
Timestamp:
01/19/2013 09:10:30 AM (13 years ago)
Author:
destio
Message:

WordPress Meta Description 1.5: code cleanup + changes in readme.txt

Location:
wordpress-meta-description
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wordpress-meta-description/tags/1.5/readme.txt

    r386021 r655230  
    11=== WordPress Meta Description ===
    22Contributors: destio
    3 Donate link: http://www.destio.de/tools/wp-meta-description/
     3Donate link: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/
    44Tags: crawler, meta elements, meta description, meta tags, search engine, search index, seo, spiders
    55Requires at least: 3.1+
    6 Tested up to: 3.1.2
    7 Stable tag: 1.4
     6Tested up to: 3.5
     7Stable tag: 1.5
    88
    99With this plugin you can control the text which will be shown as description on the search engine results pages.
     
    1616**Related Links**
    1717
    18 * [Homepage](http://www.destio.de/tools/wp-meta-description/ "Homepage of WordPress Meta Description")
     18* [Homepage](http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/ "Homepage of WordPress Meta Description")
    1919* [Changelog](http://wordpress.org/extend/plugins/wordpress-meta-description/changelog/ "Changelog for WordPress Meta Description")
    2020* [Questions](http://wordpress.org/extend/plugins/wordpress-meta-description/faq/ "FAQ for WordPress Meta Description")
     
    5858== Changelog ==
    5959
     60= 1.5 =
     61* code cleanup and changes in readme.txt
     62
    6063= 1.4 =
    6164* adding function for cutting string
  • wordpress-meta-description/tags/1.5/wp-meta-description.php

    r386013 r655230  
    22/*
    33Plugin Name: WordPress Meta Description
    4 Plugin URI: http://www.destio.de/tools/wp-meta-description/
    5 Description: Activates the excerpt for pages for global support as <code>meta description</code>.
    6 Author: Designstudio, Philipp Speck
    7 Version: 1.4
    8 Author URI: http://www.destio.de/
     4Plugin URI: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/
     5Description: Activates the excerpt for pages/posts for global support as <code>meta description</code>.
     6Author: Typomedia Foundation
     7Version: 1.5
     8Author URI: http://www.typomedia.org/
    99*/
    1010
     
    1717   
    1818    function cutstr($string, $i) {
    19         if (strlen($string) > $i) {
    20             $string = substr($string, 0, $i);
    21             $string .= "...";
    22     }
     19        if (strlen($string) > $i) {
     20        $string = substr($string, 0, $i);
     21        $string .= "...";
     22    }
    2323    return $string;
    2424    }   
  • wordpress-meta-description/trunk/readme.txt

    r386021 r655230  
    11=== WordPress Meta Description ===
    22Contributors: destio
    3 Donate link: http://www.destio.de/tools/wp-meta-description/
     3Donate link: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/
    44Tags: crawler, meta elements, meta description, meta tags, search engine, search index, seo, spiders
    55Requires at least: 3.1+
    6 Tested up to: 3.1.2
    7 Stable tag: 1.4
     6Tested up to: 3.5
     7Stable tag: 1.5
    88
    99With this plugin you can control the text which will be shown as description on the search engine results pages.
     
    1616**Related Links**
    1717
    18 * [Homepage](http://www.destio.de/tools/wp-meta-description/ "Homepage of WordPress Meta Description")
     18* [Homepage](http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/ "Homepage of WordPress Meta Description")
    1919* [Changelog](http://wordpress.org/extend/plugins/wordpress-meta-description/changelog/ "Changelog for WordPress Meta Description")
    2020* [Questions](http://wordpress.org/extend/plugins/wordpress-meta-description/faq/ "FAQ for WordPress Meta Description")
     
    5858== Changelog ==
    5959
     60= 1.5 =
     61* code cleanup and changes in readme.txt
     62
    6063= 1.4 =
    6164* adding function for cutting string
  • wordpress-meta-description/trunk/wp-meta-description.php

    r386013 r655230  
    22/*
    33Plugin Name: WordPress Meta Description
    4 Plugin URI: http://www.destio.de/tools/wp-meta-description/
    5 Description: Activates the excerpt for pages for global support as <code>meta description</code>.
    6 Author: Designstudio, Philipp Speck
    7 Version: 1.4
    8 Author URI: http://www.destio.de/
     4Plugin URI: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/
     5Description: Activates the excerpt for pages/posts for global support as <code>meta description</code>.
     6Author: Typomedia Foundation
     7Version: 1.5
     8Author URI: http://www.typomedia.org/
    99*/
    1010
     
    1717   
    1818    function cutstr($string, $i) {
    19         if (strlen($string) > $i) {
    20             $string = substr($string, 0, $i);
    21             $string .= "...";
    22     }
     19        if (strlen($string) > $i) {
     20        $string = substr($string, 0, $i);
     21        $string .= "...";
     22    }
    2323    return $string;
    2424    }   
Note: See TracChangeset for help on using the changeset viewer.