Home › Forums › General Issues › Using ACF to display different widgets on pages › Reply To: Using ACF to display different widgets on pages
<?php
$sidebar = get_field('sidebar'); // or whatever your field is named
if (is_active_sidebar($sidebar)) {
dynamic_sidebar($sidebar);
}
?>
you should take a look at this https://codex.wordpress.org/Function_Reference/dynamic_sidebar. There are many ways to code the sidebar and you may need additional html code. I’d suggest looking at some of the 20XX themes to see how they do it.
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.