Custom Background in Themes
June 21st, 2010
No Comments

With wordpress 3.0 , we have a support for custom background integrated in WP core functions. Its easy to make any theme compatible with it. All you have to do is follow the below steps.
- Go to
functions.phpfile in your WP templates directory of the current theme. - Copy this code snippet at the end of the file –
<?php add_custom_background(); > - Save the file and refresh the WP dashboard.
- Now you will see a new menu items under “Appearance” called “Background”
WP Codex Function Reference file for more details – http://codex.wordpress.org/Function_Reference/add_custom_background



