Hi, I was wondering if I can use the WP admin icons in my own project (which will be for sale here). Do you know anything about that?
Thanks 
- Sold between 250 000 and 1 000 000 dollars
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Microlancer Beta Tester
- Author was Featured
- Bought between 50 and 99 items
- Referred between 50 and 99 users
Hi,
Yes, you can do some modify so :
Copyright text
function change_footer_copyright () {
echo 'Your New Text | Copyright ©';
}
add_filter('admin_footer_text', 'change_footer_copyright');
Login Title
function change_wp_login_title() {
echo 'Powered by ' . get_option('blogname');
}
add_filter('login_headertitle', 'change_wp_login_title');
Login Logo URL
function change_wp_login_url() {
echo bloginfo('url');
}
add_filter('login_headerurl' , 'change_wp_login_url');
Login Logo
function my_custom_logo() {
echo '<style type="text/css"> #header-logo { background-image: url(http://s3.envato.com/files/305102.png) !important; } </style>';
}
add_action('admin_head', 'my_custom_logo');
Admin Head Logo
function change_login_head(){
echo '<style type="text/css">h1 a{background:url("http://s3.envato.com/files/305102.png") no-repeat scroll 50% 50% transparent; display:block; text-indent:-9999px; margin: 20px auto}</style>';
}
add_action("login_head", "change_login_head");
Enjoy 
Codestar saidThank for the quick reply, but I didn’t understand what are these codes. I wanted to ask if I can use WP admin icons in my own theme which will be for sale here. (site template)
Hi,Yes, you can do some modify so :
Copyright text
function change_footer_copyright () { echo 'Your New Text | Copyright ©'; } add_filter('admin_footer_text', 'change_footer_copyright');Login Title
function change_wp_login_title() { echo 'Powered by ' . get_option('blogname'); } add_filter('login_headertitle', 'change_wp_login_title');Login Logo URL
function change_wp_login_url() { echo bloginfo('url'); } add_filter('login_headerurl' , 'change_wp_login_url');Login Logo
function my_custom_logo() { echo '<style type="text/css"> #header-logo { background-image: url(http://s3.envato.com/files/305102.png) !important; } </style>'; } add_action('admin_head', 'my_custom_logo');Admin Head Logo
function change_login_head(){ echo '<style type="text/css">h1 a{background:url("http://s3.envato.com/files/305102.png") no-repeat scroll 50% 50% transparent; display:block; text-indent:-9999px; margin: 20px auto}</style>'; } add_action("login_head", "change_login_head");Enjoy![]()
- Sold between 250 000 and 1 000 000 dollars
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Microlancer Beta Tester
- Author was Featured
- Bought between 50 and 99 items
- Referred between 50 and 99 users
Ups,
sorry, i was thinking as Your Own WP Project
I mixed
and i think you can use wp icons for your own project. why not
wordpress’s tools is open-source.
Codestar said
Ups,sorry, i was thinking as Your Own WP Project
I mixed
and i think you can use wp icons for your own project. why notwordpress’s tools is open-source.
Thank you very much 
