Support

Account

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;
    }