// Get background from Database
$background = get_option('my_background_field_id', []);
// Check if background is empty and display it
if (!empty($background)) {
$style = '';
foreach ($background as $attr => $value) {
$style .= $attr.':'.$value.';';
}
echo '<div style="'.$style.'">My content</div>';
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.