Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Avada › Forums › Community Forum › hook filter for blog grid
I’m needing to add a custom field to the excerpt of blog posts in the Avada blog element (grid layout).
I’ve created a basic filter to hook to avada_blog_post_content – but I’m not seeing any changes. I’m wondering if I have used the correct hook.
function video_modal_for_post_in_grid() {
echo ‘foobar’;
}
add_filter( ‘avada_blog_post_content’, ‘video_modal_for_post_in_grid’ );