Home › Forums › Backend Issues (wp-admin) › my_acf_admin_head errors › Reply To: my_acf_admin_head errors
Figures it out. It was the spaces in my_acf_admin_head. Cleaned it up like this…
<?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'); ?>
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.