Hi,
i'm a beginner at PHP, and i try to display a specific post on the footer.
i use this PHP code :
<?php
$post_id = 67;
$specific_post = get_post($post_id);
echo $specific_post -> post_content;
it work good, but i want the "more" tag... i was unable to find a solution... but i think it's very easy... i try this one, but don't work :
<?php
$post_id = 67;
$specific_post = get_post($post_id);
echo $specific_post -> the_content('more');