Changeset 838703
- Timestamp:
- 01/15/2014 12:16:42 AM (12 years ago)
- Location:
- seo-internal-link-shortcode
- Files:
-
- 3 added
- 2 edited
-
tags/0.1.1 (added)
-
tags/0.1.1/readme.txt (added)
-
tags/0.1.1/seo-internal-link-shortcode.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/seo-internal-link-shortcode.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
seo-internal-link-shortcode/trunk/readme.txt
r679790 r838703 6 6 Tags: category, categories, content, html5, link, links, microdata, microformat, microformats, optimize, optimization, page, pages, permalink, permalinks, plugin, post, posts, relative, schema, schema.org, seo, shortcode, shortcodes, shortlinks, structured-data, tag, tags, taxonomy, url, urls 7 7 Requires at least: 3.2 8 Tested up to: 3. 5.18 Tested up to: 3.8 9 9 Stable tag: trunk 10 10 … … 46 46 == Changelog == 47 47 48 = 0.1.1 = 49 * Bug: Slug links work now 50 48 51 = 0.1 = 49 52 * Initial release -
seo-internal-link-shortcode/trunk/seo-internal-link-shortcode.php
r678402 r838703 4 4 Plugin URI: http://www.svachon.com/blog/seo-internal-link-shortcode-for-wordpress/ 5 5 Description: Internal links to posts, custom-type posts, pages, categories and tags with any HTML attribute(s). 6 Version: 0.1 6 Version: 0.1.1 7 7 Author: Steven Vachon 8 8 Author URI: http://www.svachon.com/ … … 39 39 { 40 40 global $wpdb; 41 $atts['id'] = $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_name = %s",$ slug) );41 $atts['id'] = $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_name = %s",$atts['slug']) ); 42 42 } 43 43
Note: See TracChangeset
for help on using the changeset viewer.