Archived topic
how to get background image url
3 replies · Started by Marco on April 17, 2019
Viewing posts 1–4 of 4
Hello
I'm looking for a function like get_option to get the body background image url set in the customizer.
thank you in advance for your help.
Hi there,
You would do this:
$settings = wp_parse_args(
get_option( 'generate_background_settings', array() ),
generate_get_background_defaults()
);
$body_background_image = $settings['body_image'];
Let me know if you need more info :)
Thanks - that worked
You're welcome :)
This archived topic is closed to new replies.