Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter RoyCreative

    (@roycreative)

    I actually solved this. First I created a content block called “Copyright Info.”

    Then, in my Footer.php, I put this code, whereas 399 is the page ID for the content block:

    <?php
    $page_id = 399;
    $page_data = get_page( $page_id );
    $content = $page_data->post_content;
    echo $page_data->post_content;
    ?>
    Plugin Author Johan van der Wijk

    (@vanderwijk)

    Thanks for sharing your solution to this issue!

    Hey this is exactly what I was looking for: first I found the Content Blocks plug-in, which is great, and now this additional tip. Thanks guys!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Custom Post Widget] Custom Post in Page Template’ is closed to new replies.