admin管理员组文章数量:1332359
I have a very simple theme to which I need to add custom-background
support.
When I go into appearance -> customize
, I am able to select a background image.
However, the background of the site never actually changes, and I can see that the output html contains
<body class="home blog logged-in admin-bar no-customize-support custom-background">
But there are no <style>
tags to be seen.
Does anyone have any suggestions as to what may be going wrong?
header.php
<html>
<head>
<title>Tutorial theme</title>
<link href=".3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet">
</head>
<body <?php body_class(''); ?>>
<div id="wrapper">
<div id="header">
<h1>HEADER</h1>
</div>
functions.php
<?php
$defaults = array(
'default-image' => '',
'default-preset' => 'default',
'default-position-x' => 'left',
'default-position-y' => 'top',
'default-size' => 'auto',
'default-repeat' => 'repeat',
'default-attachment' => 'scroll',
'default-color' => '',
'wp-head-callback' => '_custom_background_cb',
'admin-head-callback' => '',
'admin-preview-callback' => '',
);
add_theme_support('custom-background', $defaults );
?>
I also tried simply adding add_theme_support('custom-background');
but no luck.
I am using version 4.7.5
本文标签: add theme supportCustom Background not Appearing
版权声明:本文标题:add theme support - Custom Background not Appearing 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742317929a2452186.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论