Add Logo to Admin - Version 1.0.2

Version Description

Download this release

Release Info

Developer tinkerpriest
Plugin Icon wp plugin Add Logo to Admin
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

add-logo.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Add Logo to Admin
4
  Plugin URI: http://bavotasan.com/tidbits/add-your-logo-to-the-wordpress-admin-and-login-page/
5
  Description: Adds a custom logo to your site's Admin header and your login page.
6
  Author: c.bavota
7
- Version: 1.0.1
8
  Author URI: http://bavotasan.com
9
  */
10
 
4
  Plugin URI: http://bavotasan.com/tidbits/add-your-logo-to-the-wordpress-admin-and-login-page/
5
  Description: Adds a custom logo to your site's Admin header and your login page.
6
  Author: c.bavota
7
+ Version: 1.0.2
8
  Author URI: http://bavotasan.com
9
  */
10
 
{trunk/css → css}/login.css RENAMED
File without changes
{trunk/css → css}/wp-admin.css RENAMED
File without changes
{trunk/images → images}/logo.png RENAMED
File without changes
{trunk/js → js}/admin.js RENAMED
File without changes
{trunk/js → js}/login.js RENAMED
File without changes
trunk/readme.txt → readme.txt RENAMED
@@ -4,7 +4,7 @@ Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom logo, admin, login
5
  Requires at least: 2.7
6
  Tested up to: 2.7
7
- Stable tag: 1.0.1
8
 
9
  Add a custom logo to your admin header and to your login page.
10
 
@@ -16,16 +16,16 @@ This plugin allows a user to customize their admin panel by adding their own log
16
 
17
  == Installation ==
18
 
19
- 1. Unzip the add-logo.zip file.
20
- 2. Create your own logo and name it logo.png. Add it to add-logo/images folder.
21
- 3. Upload the `add-logo` folder to the `/wp-content/plugins/` directory.
22
  4. Activate the plugin through the 'Plugins' menu in WordPress.
23
 
24
  == Frequently Asked Questions ==
25
 
26
  1) How do I add my own logo?
27
 
28
- Create your own logo and name it logo.png. Add it to add-logo/images folder.
29
 
30
  2) How big does my logo need to be?
31
 
@@ -37,11 +37,11 @@ Yes it can. But you would need to edit two lines in two files of the plugin to m
37
 
38
  Open file js/login.js and change line 8 to
39
 
40
- var imgSrc = "../wp-content/plugins/add-logo/images/logo.jpg";
41
 
42
  Open file js/admin.js and change line 8 to
43
 
44
- var imgSrc = "../wp-content/plugins/add-logo/images/logo.jpg";
45
 
46
  NOTE: You can also change it to logo.gif or whichever file format you prefer. I chose .png to take advantage of the high quality transparency it offers.
47
 
@@ -52,8 +52,11 @@ NOTE: You can also change it to logo.gif or whichever file format you prefer. I
52
 
53
  == Change Log ==
54
 
 
 
 
55
  1.0.1 (2008-12-16)
56
- Fixed the code to direct the proper plugin folder
57
 
58
  1.0 (2008-12-15)
59
  Initial Public Release
4
  Tags: custom logo, admin, login
5
  Requires at least: 2.7
6
  Tested up to: 2.7
7
+ Stable tag: 1.0.2
8
 
9
  Add a custom logo to your admin header and to your login page.
10
 
16
 
17
  == Installation ==
18
 
19
+ 1. Unzip the add-logo-to-admin.zip file.
20
+ 2. Create your own logo and name it logo.png. Add it to add-logo-to-admin/images folder.
21
+ 3. Upload the `add-logo-to-admin` folder to the `/wp-content/plugins/` directory.
22
  4. Activate the plugin through the 'Plugins' menu in WordPress.
23
 
24
  == Frequently Asked Questions ==
25
 
26
  1) How do I add my own logo?
27
 
28
+ Create your own logo and name it logo.png. Add it to add-logo-to-admin/images folder.
29
 
30
  2) How big does my logo need to be?
31
 
37
 
38
  Open file js/login.js and change line 8 to
39
 
40
+ var imgSrc = "../wp-content/plugins/add-logo-to-admin/images/logo.jpg";
41
 
42
  Open file js/admin.js and change line 8 to
43
 
44
+ var imgSrc = "../wp-content/plugins/add-logo-to-admin/images/logo.jpg";
45
 
46
  NOTE: You can also change it to logo.gif or whichever file format you prefer. I chose .png to take advantage of the high quality transparency it offers.
47
 
52
 
53
  == Change Log ==
54
 
55
+ 1.0.2 (2008-12-16)
56
+ Fixed weirdness with extra folder
57
+
58
  1.0.1 (2008-12-16)
59
+ Fixed the code to direct to the proper plugin folder
60
 
61
  1.0 (2008-12-15)
62
  Initial Public Release
screenshot-1.jpg ADDED
Binary file
screenshot-2.jpg ADDED
Binary file
trunk/add-logo.php DELETED
@@ -1,25 +0,0 @@
1
- <?php
2
- /*
3
- Plugin Name: Add Logo to Admin
4
- Plugin URI: http://bavotasan.com/tidbits/add-your-logo-to-the-wordpress-admin-and-login-page/
5
- Description: Adds a custom logo to your site's Admin header and your login page.
6
- Author: c.bavota
7
- Version: 1.0.1
8
- Author URI: http://bavotasan.com
9
- */
10
-
11
- function add_logo_to_admin() {
12
- echo '<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/wp-content/plugins/add-logo-to-admin/css/wp-admin.css" />'."\n";
13
- echo '<script type="text/javascript" src="' . get_settings('siteurl') . '/wp-content/plugins/add-logo-to-admin/js/admin.js"></script>'."\n";
14
- }
15
-
16
- add_action('admin_head', 'add_logo_to_admin');
17
-
18
- function wp_admin_login_css() {
19
- echo '<link rel="stylesheet" type="text/css" href="' . get_settings('siteurl') . '/wp-content/plugins/add-logo-to-admin/css/login.css" />'."\n";
20
- echo '<script type="text/javascript" src="' . get_settings('siteurl') . '/wp-content/plugins/add-logo-to-admin/js/login.js"></script>'."\n";
21
- }
22
-
23
- add_action('login_head', 'wp_admin_login_css');
24
-
25
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
trunk/screenshot-1.jpg DELETED
Binary file
trunk/screenshot-2.jpg DELETED
Binary file