Changeset 835127
- Timestamp:
- 01/08/2014 08:11:28 PM (12 years ago)
- Location:
- make-me-links/trunk
- Files:
-
- 3 edited
-
README.md (modified) (3 diffs)
-
makemelinks.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
make-me-links/trunk/README.md
r835069 r835127 2 2 ============== 3 3 Contributors: william.deangelis 4 5 4 Donate link: http://williamdeangelis.com/donate 6 7 5 Tags: links, linkable, clickable, link, post link, post links, content links, content link, url, URL 8 9 6 Requires at least: 3.5 10 11 7 Tested up to: 3.8 12 13 8 License: GPLv2 or later 14 15 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 16 10 17 Here is a short description of the plugin. 11 Turn text URL's throughout your blog content into links! 18 12 19 13 … … 25 19 Installation 26 20 ============== 27 1a. Option 1 - Upload the contents of `makemelinks.zip` to the `/wp-content/plugins/` directory in its own folder. 28 29 1b. Option 2 - Install the plugin directory via the WordPress repository 30 21 1. Option 1 - Upload the contents of `makemelinks.zip` to the `/wp-content/plugins/` directory in its own folder. 22 1. Option 2 - Install the plugin directory via the WordPress repository 31 23 2. Activate the plugin through the 'Plugins' menu in WordPress 32 33 24 3. That's it! It will just do the work for you. 34 25 … … 39 30 = 1.0 = 40 31 * Version 1.0 of the new plugin 32 33 = 1.1 = 34 * Minor change to fix the bloginfo issue -
make-me-links/trunk/makemelinks.php
r835069 r835127 4 4 * Plugin URI: http://makemelinks.williamdeangelis.com 5 5 * Description: Make Me Links is a simple plugin that scours your content looking for text URL's to turn into links. Once it finds one, it analyzes the type of link it is to see if it should open in a new window / tab or itself. Site URL's open in self. External URL's open in a new tab / window. 6 * Version: 1. 06 * Version: 1.1 7 7 * Author: William DeAngelis 8 8 * Author URI: http://williamdeangelis.com … … 17 17 { 18 18 jQuery(".entry-content a[href^=\'http://\']").attr("target","_blank"); 19 jQuery(".entry-content a[href^=' . bloginfo('url') . ']").attr("target","_self");19 jQuery(".entry-content a[href^=' . get_bloginfo('url') . ']").attr("target","_self"); 20 20 }); 21 21 </script>'; 22 22 } 23 24 23 add_action('wp_head', 'make_me_links_js'); 25 24 -
make-me-links/trunk/readme.txt
r835077 r835127 25 25 = 1.0 = 26 26 * Version 1.0 of the new plugin 27 28 = 1.1 = 29 * Minor change to fix the bloginfo issue
Note: See TracChangeset
for help on using the changeset viewer.