Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sbrajesh/1034853 to your computer and use it in GitHub Desktop.
Save sbrajesh/1034853 to your computer and use it in GitHub Desktop.
Allow Developers to Use their own custom css for background positioning etc
<?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 {
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