Home › Forums › Backend Issues (wp-admin) › Using ACF with the Genesis Framework › Reply To: Using ACF with the Genesis Framework
Hi agustinum –
Depending on what you are doing, you could use a template for a page, or a single for a post, or archive for archives, etc. You just have to make sure to use the right structure hook ( http://genesistutorials.com/visual-hook-guide/ ) and then use either the_field() or echo get_field() to show off you data.
You can also just put something in your functions file like
add_action(‘genesis_after_header’,’my_function_name’);
function my_function_name()
{
if(is_page(‘home’) :
the_field(‘some_field_name’);
endif;
}
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.