Changeset 655230
- Timestamp:
- 01/19/2013 09:10:30 AM (13 years ago)
- Location:
- wordpress-meta-description
- Files:
-
- 4 edited
- 1 copied
-
tags/1.5 (copied) (copied from wordpress-meta-description/trunk)
-
tags/1.5/readme.txt (modified) (3 diffs)
-
tags/1.5/wp-meta-description.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-meta-description.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-meta-description/tags/1.5/readme.txt
r386021 r655230 1 1 === WordPress Meta Description === 2 2 Contributors: destio 3 Donate link: http://www. destio.de/tools/wp-meta-description/3 Donate link: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/ 4 4 Tags: crawler, meta elements, meta description, meta tags, search engine, search index, seo, spiders 5 5 Requires at least: 3.1+ 6 Tested up to: 3. 1.27 Stable tag: 1. 46 Tested up to: 3.5 7 Stable tag: 1.5 8 8 9 9 With this plugin you can control the text which will be shown as description on the search engine results pages. … … 16 16 **Related Links** 17 17 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") 19 19 * [Changelog](http://wordpress.org/extend/plugins/wordpress-meta-description/changelog/ "Changelog for WordPress Meta Description") 20 20 * [Questions](http://wordpress.org/extend/plugins/wordpress-meta-description/faq/ "FAQ for WordPress Meta Description") … … 58 58 == Changelog == 59 59 60 = 1.5 = 61 * code cleanup and changes in readme.txt 62 60 63 = 1.4 = 61 64 * adding function for cutting string -
wordpress-meta-description/tags/1.5/wp-meta-description.php
r386013 r655230 2 2 /* 3 3 Plugin 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 Speck7 Version: 1. 48 Author URI: http://www. destio.de/4 Plugin URI: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/ 5 Description: Activates the excerpt for pages/posts for global support as <code>meta description</code>. 6 Author: Typomedia Foundation 7 Version: 1.5 8 Author URI: http://www.typomedia.org/ 9 9 */ 10 10 … … 17 17 18 18 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 } 23 23 return $string; 24 24 } -
wordpress-meta-description/trunk/readme.txt
r386021 r655230 1 1 === WordPress Meta Description === 2 2 Contributors: destio 3 Donate link: http://www. destio.de/tools/wp-meta-description/3 Donate link: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/ 4 4 Tags: crawler, meta elements, meta description, meta tags, search engine, search index, seo, spiders 5 5 Requires at least: 3.1+ 6 Tested up to: 3. 1.27 Stable tag: 1. 46 Tested up to: 3.5 7 Stable tag: 1.5 8 8 9 9 With this plugin you can control the text which will be shown as description on the search engine results pages. … … 16 16 **Related Links** 17 17 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") 19 19 * [Changelog](http://wordpress.org/extend/plugins/wordpress-meta-description/changelog/ "Changelog for WordPress Meta Description") 20 20 * [Questions](http://wordpress.org/extend/plugins/wordpress-meta-description/faq/ "FAQ for WordPress Meta Description") … … 58 58 == Changelog == 59 59 60 = 1.5 = 61 * code cleanup and changes in readme.txt 62 60 63 = 1.4 = 61 64 * adding function for cutting string -
wordpress-meta-description/trunk/wp-meta-description.php
r386013 r655230 2 2 /* 3 3 Plugin 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 Speck7 Version: 1. 48 Author URI: http://www. destio.de/4 Plugin URI: http://www.typomedia.org/wordpress/plugins/wordpress-meta-description/ 5 Description: Activates the excerpt for pages/posts for global support as <code>meta description</code>. 6 Author: Typomedia Foundation 7 Version: 1.5 8 Author URI: http://www.typomedia.org/ 9 9 */ 10 10 … … 17 17 18 18 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 } 23 23 return $string; 24 24 }
Note: See TracChangeset
for help on using the changeset viewer.