我一直在寻找这个答案,但无法解决。
我为页面和帖子创建了两个自定义字段:一个用于背景图像,一个用于背景颜色。
然后我这样称呼我头脑中的变化:
<style type="text/css">
<?php
$image = get_post_meta($post->ID, 'background-image', true);
$bgcolor = get_post_meta($post->ID, 'background-color', true);?>
#wrapper { background-image: url('<?php echo $image ?>');
background-size: 100% auto;
background-repeat: no-repeat;
background-color: <?php echo $bgcolor ?>;
}
</style>
</head>`
我不想在使用此主题的每个站点中创建自定义字段,因此我想将自定义字段添加到主题(编码)。如何将它添加到我的 functions.php 或 page.php 或它必须在的任何地方?