Hey,
We have updated UAGB to v1.8.0. You can add HTML before/after the excerpt for Post Grid using the below action hooks. You need to add the below-given code to your child theme’s functions.php file.
add_action(
'uagb_single_post_before_excerpt_grid',
function ( $post_id, $attributes ) {
echo '<p>I love UAGB</p>';
// Here you can fetch any HTML as per the post.
},
10,
2
);
If you need the HTML after the excerpt you need to change uagb_single_post_before_excerpt_grid
to uagb_single_post_after_excerpt_grid
.
I hope this resolves your doubts.
Note: This will work only at frontend.
Regards,
Vrunda Kansara