B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sportmx
/
www
/
wp-content
/
plugins
/
rel-nofollow-checkbox
/
Filename :
rel-nofollow-checkbox.php
back
Copy
<?php /** * Plugin Name: Rel Nofollow Checkbox * Plugin URI: https://github.com/ffsantos92/rel-nofollow-checkbox * Description: This plugin adds a simple checkbox in the insert/edit link popup for including nofollow attribute. * Version: 1.1.5 * Author: Fabio Santos * Author URI: http://www.fabiosantos.me */ function overwrite_wplink() { // Disable wplink wp_deregister_script('wplink'); // Register a new script file to be linked wp_register_script('wplink', plugins_url('wplink.min.js', __FILE__), array( 'jquery', 'wpdialogs' ), false, 1); wp_localize_script('wplink', 'wpLinkL10n', array('title' => __('Insert/edit link'), 'update' => __('Update'), 'save' => __('Add Link'), 'noTitle' => __('(no title)'), 'noMatchesFound' => __('No matches found.') )); } add_action('admin_enqueue_scripts', 'overwrite_wplink', 999);