I want to get content of a post until the read more that I set when I'm creating a new post, so far I'm able to get the content doing
apply_filters('the_content', $post->post_content);
I would like to get only until the Read More, I'm integrating a blog to the home page and I only need a brief description of the article.
Thanks