I’ve created an advanced custom field for a “second” thumbnail image.
I want to be able to insert this just after the current post headline.
I’ve tried to use ava_after_post_title but this doesn’t work.
Does anyone know the hook I can use to insert this image where I want it?
add_action( ‘ava_after_post_title’, ‘custom_field_before_content’ );
function custom_field_before_content() {
if(is_single() )
if( get_field(‘logo_image’) ):
?>” alt=”” /><?php
endif;
}