[Resolved] how to get background image url

Home Forums Support [Resolved] how to get background image url

Home Forums Support how to get background image url

  • This topic has 3 replies, 2 voices, and was last updated 5 years ago by Tom.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #872035
    Marco

    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.

    #872165
    Tom
    Lead Developer
    Lead Developer

    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 ๐Ÿ™‚

    #872394
    Marco

    Thanks – that worked

    #872752
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.