In the source code of the browser in the head block shows the css code:

 <style type="text/css" id="custom-background-css"> body.custom-background { background-image: url('http://ali-coupons.net/wp-content/uploads/2016/05/ali-background.png'); background-repeat: repeat; background-position: top left; background-attachment: scroll; } </style> 

These styles are not listed in header.php . I do not understand how to make it go away.
WordPress 4.4.4 site WordPress 4.4.4 .

  • look in fucntions.php or if there is a theme setting then in the admin area - EatMyDust
  • I found nothing in fucntions.php there. Guys, can someone recommend something? - Beginner

1 answer 1

http://wp-kama.ru/function/add_theme_support#custom-background

Comment out your theme's functions.php file add_theme_support( 'custom-background' ); to make it // add_theme_support( 'custom-background' ); .

Or remove from the listing for example:
From add_theme_support( 'custom-background', 'post-thumbnail', 'custom-header' ); to make add_theme_support( 'post-thumbnail', 'custom-header' ); .