Home › Forums › Add-ons › Options Page › using options page fields in functions.php › Reply To: using options page fields in functions.php
Hey Elliot. I tried that and it still didn’t work. I pulled my include out of the function just to test and it works.
function m1_core_feature_selection() {
$include_albums = get_field('include_albums', 'option');
if($include_albums == 1) {
include_once('lib/cpt_albums.php');
}
}
add_action('wp_loaded', 'm1_core_feature_selection');
I also tried ‘init’ versus ‘wp_loaded’ and that didn’t work either
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.