Home › Forums › Front-end Issues › ACF Admin Head Styles › Reply To: ACF Admin Head Styles
Yes, since you want to put this on the front of the site the hook you should be using is wp_head
<!--USER INPUT STYLES FUNCTION-->
<?php function my_acf_admin_head() {
$backgroundimage = get_field('background_image', 'option'); ?>
<!--BEGIN USER INPUT STYLES-->
<style type="text/css">
/**Adds custom global background image**/
.main-content {
background-image: url ('<?php echo $backgroundimage; ?>');
}
</style>
<?php
}
add_action('wp_head', 'my_acf_admin_head');
?>
<!--END USER INPUT STYLES-->
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.