• Resolved johnnyrokkit

    (@johnnyrokkit)


    I have a post in which I am using short codes to create a two-column post. Here’s the post (ignore page layout, just observe that the content of the post is in two columns):
    https://squidandsquash.org/wp/organizations/

    I have this post being brought into a page, at which point the short codes no longer work, and actually appear as part of the post:
    https://squidandsquash.org/wp/organizations-we-love/

    Using this to bring the post into the page:

    <?php
    $post_id = 25;
    $queried_post = get_post($post_id);
    $title = $queried_post->post_title;
    echo $queried_post->post_content;
    ?>

    Been searching for answers, but unable to find anything. Your generous support is appreciated.

    Cheers,
    John

  • The topic ‘Short Codes Broken In Post Imported to Page’ is closed to new replies.