Created
June 19, 2011 22:59
-
-
Save sbrajesh/1034872 to your computer and use it in GitHub Desktop.
Allow to change the background of profile container div
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter("bppg_iwilldo_it_myself","__return_true");//stop the plugin to inject css | |
//now we can write our own css | |
add_action("wp_head","my_css_for_profile_bg"); | |
function my_css_for_profile_bg(){ | |
$image_url=bppg_get_image(); | |
if(!$image_url) | |
return;//this user has not uploaded an image yet | |
?> | |
<style type="text/css"> | |
body.is-user-profile div#content .padder{ | |
background:url(<?php echo $image_url;?>) no-repeat;/*please customize it*/ | |
} | |
</style> | |
<?php | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment