Version Description
Download this release
Release Info
Developer | VelvetBlues.com |
Plugin | Velvet Blues Update URLs |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- readme.txt +6 -2
- velvet-blues-update-urls.php +7 -7
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.velvetblues.com/web-development-blog/wordpress-plugin-up
|
|
4 |
Tags: permalinks, urls, links, update links, move wordpress, location, update urls, update permalinks
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 2.6.2
|
7 |
-
Stable tag: 1.0
|
8 |
|
9 |
Updates all urls and content links in your website.
|
10 |
|
@@ -52,4 +52,8 @@ Using this plugin is very simple. Navigate to Settings -> Update and follow the
|
|
52 |
|
53 |
== Screenshots ==
|
54 |
|
55 |
-
1. The Admin screen for the plugin.
|
|
|
|
|
|
|
|
4 |
Tags: permalinks, urls, links, update links, move wordpress, location, update urls, update permalinks
|
5 |
Requires at least: 2.5
|
6 |
Tested up to: 2.6.2
|
7 |
+
Stable tag: 1.0.1
|
8 |
|
9 |
Updates all urls and content links in your website.
|
10 |
|
52 |
|
53 |
== Screenshots ==
|
54 |
|
55 |
+
1. The Admin screen for the plugin.
|
56 |
+
|
57 |
+
== Update Log ==
|
58 |
+
|
59 |
+
* 1.0.1 - Fixed possible interactions with other plugins.
|
velvet-blues-update-urls.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.velvetblues.com/web-development-blog/wordpress-plugin-upd
|
|
5 |
Description: This plugin updates all urls in your website by replacing the old urls with the new.
|
6 |
Author: Velvet Blues
|
7 |
Author URI: http://www.velvetblues.com/
|
8 |
-
Version: 1.0
|
9 |
*/
|
10 |
/* Copyright 2008 Velvet Blues Web Design (email : info@velvetblues.com)
|
11 |
|
@@ -25,10 +25,10 @@ Version: 1.0
|
|
25 |
*/
|
26 |
|
27 |
/* Functions for the options page */
|
28 |
-
function
|
29 |
-
add_options_page("Update URLs Setings", "Update Urls", "manage_options", __FILE__, "
|
30 |
}
|
31 |
-
function
|
32 |
|
33 |
/* Function which updates urls */
|
34 |
function VB_update_urls($links,$oldurl,$newurl) {
|
@@ -71,13 +71,13 @@ Version: 1.0
|
|
71 |
<tr>
|
72 |
<th scope="row" style="width:300px;">Old URL</th>
|
73 |
<td>
|
74 |
-
<p
|
75 |
</td>
|
76 |
</tr>
|
77 |
<tr>
|
78 |
<th scope="row" style="width:300px;">New URL</th>
|
79 |
<td>
|
80 |
-
<p
|
81 |
</td>
|
82 |
</tr>
|
83 |
</table>
|
@@ -88,5 +88,5 @@ Version: 1.0
|
|
88 |
<?
|
89 |
}
|
90 |
|
91 |
-
add_action('admin_menu', '
|
92 |
?>
|
5 |
Description: This plugin updates all urls in your website by replacing the old urls with the new.
|
6 |
Author: Velvet Blues
|
7 |
Author URI: http://www.velvetblues.com/
|
8 |
+
Version: 1.0.1
|
9 |
*/
|
10 |
/* Copyright 2008 Velvet Blues Web Design (email : info@velvetblues.com)
|
11 |
|
25 |
*/
|
26 |
|
27 |
/* Functions for the options page */
|
28 |
+
function VelvetBluesUU_add_options_page() {
|
29 |
+
add_options_page("Update URLs Setings", "Update Urls", "manage_options", __FILE__, "VelvetBluesUU_options_page");
|
30 |
}
|
31 |
+
function VelvetBluesUU_options_page() {
|
32 |
|
33 |
/* Function which updates urls */
|
34 |
function VB_update_urls($links,$oldurl,$newurl) {
|
71 |
<tr>
|
72 |
<th scope="row" style="width:300px;">Old URL</th>
|
73 |
<td>
|
74 |
+
<p><input name="VBUU_oldurl" type="text" id="VBUU_oldurl" value="" style="width:300px;" />/</p>
|
75 |
</td>
|
76 |
</tr>
|
77 |
<tr>
|
78 |
<th scope="row" style="width:300px;">New URL</th>
|
79 |
<td>
|
80 |
+
<p><input name="VBUU_newurl" type="text" id="VBUU_newurl" value="" style="width:300px;" />/</p>
|
81 |
</td>
|
82 |
</tr>
|
83 |
</table>
|
88 |
<?
|
89 |
}
|
90 |
|
91 |
+
add_action('admin_menu', 'VelvetBluesUU_add_options_page');
|
92 |
?>
|