Hello,
I use php to extract the content of my post after the more tag like this :
<?php
$morestring = '<!--more-->';
$explodemore = explode($morestring, $post->post_content);
the_content();
echo $explodemore[1];
the problem is when you don't use the tag the_content all shortcode doesn't work.
Someone have an idea to solve this problem please ?
Thanks!