Forums

[resolved] Display content with shortcode after More tag (3 posts)

  1. binbin
    Member
    Posted 2 years ago #

    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!

  2. alchymyth
    The Sweeper
    Posted 2 years ago #

    you could try to use apply_filters

    echo apply_filters('the_content',$explodemore[1]);

    no idea if it would do what you want....

  3. binbin
    Member
    Posted 2 years ago #

    it works ! Thanks to you !!

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags