I would like to show custom fields inside articles.
My theme is woodmart with wp bakery.
This fuction in fuction.php
add_action(‘the_content’, ‘display_fields’ );
function display_fields() {
if(get_field(‘provvedimento’))
{
echo ‘<h2> ‘ . get_field(‘provvedimento’) . ‘</h2>’;
}
}
This function cancels the content of other pages for me