I have tried your way as well:
{{dc:acf:field field="acf:series_headline" post_id="options"}}
and {{acf:series_headline}}
do not render anything on the back nor front end of the site.
I have placed the shortcode from ACF in the field:
[acf field="series_headline" post_id="options"]
and this at least gets something visible on the front end.
Is this a bug with dynamic content with ACF? Also how are we expected to display images? I have a image field and have its settings to return the URL. I have tried to place it in a content area but that does’t display the file on the front end:
<img src="[acf field="series_image" post_id="options"]">
Here is the code in my functions file:
function rc_acf_options_page() {
if ( ! function_exists( 'acf_add_options_page' ) )
return;
acf_add_options_page( array(
'title' => 'REFINERY Options',
'menu_slug' => 'refinery-options',
'capability' => 'manage_options',
'redirect' => false
) );
acf_add_options_sub_page(array(
'page_title' => 'Home Page Settings',
'menu_title' => 'Home Page',
'parent_slug' => 'refinery-options',
));
}
add_action( 'init', 'rc_acf_options_page' );
Here is the setting for the field group
