// Alternative :Utilise le hook "et_pb_portfolio_item_after_title"
add_action('et_pb_portfolio_item_after_title','custom_filterable_portfolio_excerpt_and_button',10,1);function custom_filterable_portfolio_excerpt_and_button($post_id){$post=get_post($post_id);if (has_excerpt($post)){echo '' . wp_kses_post(get_the_excerpt($post)) . ''}echo 'Read more'}