Plugin Directory

Changeset 835127


Ignore:
Timestamp:
01/08/2014 08:11:28 PM (12 years ago)
Author:
william.deangelis
Message:

Updating to 1.1 to address the bloginfo issue

Location:
make-me-links/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • make-me-links/trunk/README.md

    r835069 r835127  
    22==============
    33Contributors: william.deangelis
    4 
    54Donate link: http://williamdeangelis.com/donate
    6 
    75Tags: links, linkable, clickable, link, post link, post links, content links, content link, url, URL
    8 
    96Requires at least: 3.5
    10 
    117Tested up to: 3.8
    12 
    138License: GPLv2 or later
    14 
    159License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1610
    17 Here is a short description of the plugin.
     11Turn text URL's throughout your blog content into links!
    1812
    1913
     
    2519Installation
    2620==============
    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 
     211. Option 1 - Upload the contents of `makemelinks.zip` to the `/wp-content/plugins/` directory in its own folder.
     221. Option 2 - Install the plugin directory via the WordPress repository
    31232. Activate the plugin through the 'Plugins' menu in WordPress
    32 
    33243. That's it! It will just do the work for you.
    3425
     
    3930= 1.0 =
    4031* 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  
    44 * Plugin URI: http://makemelinks.williamdeangelis.com
    55 * 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.0
     6 * Version: 1.1
    77 * Author: William DeAngelis
    88 * Author URI: http://williamdeangelis.com
     
    1717    {
    1818        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");
    2020    });
    2121    </script>';
    2222}
    23 
    2423add_action('wp_head', 'make_me_links_js');
    2524
  • make-me-links/trunk/readme.txt

    r835077 r835127  
    2525= 1.0 =
    2626* 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.